Add filter for posts/pages of Bricks content in the WordPress dashboard

You can add an extra filter in the WordPress dashboard to filter just Bricks posts, pages or other custom post types. Click on the Bricks link and see just Bricks content.You can choose to show all the post types that…
Using Bricks builder for random post creation whilst also using a single post template

Normally for WordPress posts and other custom post types it is best practice to use a single post template to cover the layout for all posts of a certain type.You can also exclude certain posts in Bricks from using the…
Add Cloudflare Turnstile to WordPress Comments in Bricks Theme

Bricks Builder has Cloudflare Turnstile integration built in allowing you to add your Turnstile site and secret keys to the API tab in Bricks Settings. This then allows you to add Turnstile to custom login pages and native Bricks form…
Change Menu Label Text on Beaver Builder Menu Module

By default the Beaver Builder menu label text is set to ‘MENU’ without no option to change the text.Here is a guide to change the menu label text on mobile devices less than 768px. On this example the label is…
Getting your Bootstrap Popover Popper going on in WordPress Theme

Bootstrap Popover is a nifty little tool like a tool tip function that displays more text by clicking on the button.Click to toggle popoverUnderlying code below…<button type=”button” class=”brxe-button bricks-button bricks-background-primary btn btn-lg” data-bs-toggle=”popover” data-bs-title=”Popover title” data-bs-content=”And here’s some amazing content.…
Reducing Table Size of WooCommerce Scheduler Actions and Logs using phpMyadmin

The Scheduled Actions that sit in WooCommerce Action Scheduler can get bloated with thousands of actions piling up, just stuck in a failed, canceled, pending or complete state. This can result in very large database tables in particular wp_actionscheduler_actions and…
Set Up Valet on macOS for Local WordPress Development

This is a guide on how to set up Laravel Valet on macOS for a WordPress local development environment. Using Valet as a WordPress local development solution has the main benefits of speed, being lightweight and using fewer configurations to…
Tweaking RunCloud Servers After Deployment

Here are some references for various fix ups or tweaks that I apply to servers with the RunCloud control panel. These are not all done inclusively, it depends on the need.Change root passwordThe root password initially generated by your host provider…
Adding 7G WAF Firewall for NGINX to CloudPanel

The 7G WAF firewall by Jeff Starr at Perishable Press is a great addition for server level WAF protection, here is a guide on how to add it to CloudPanel’s NGINX stack.Download the 7G WAF NGNIX versionDownload the 7G WAF…
Disable default WordPress emails on WordPress, themes and plugin updates

The PHP constants below will disable the default WordPress emails on WordPress, themes and plugin updates. They should be added into your wp-config.php file.// Disable WordPress core update emails add_filter( ‘auto_core_update_send_email’, ‘__return_false’ ); // Disable WordPress plugin update emails add_filter(…