Change @WordPress from email address and from name sent out from website

WordPress sends a few emails out from a website including password reset emails that have a from email address wordpress@yoursite.com they also have a from name of WordPress. Two WordPress filters can change these values wp_mail_from and wp_mail_from_name – add…
Making A Boot USB Disk of macOS 10.9 – 10.15 via Terminal and GUI

This guide deals with 3 ways of making a boot disk from macOS, the first one is the fastest and is done via the Terminal from a command in macOS called createinstallmedia, the other 2 are older ways are done with…
Toggle Bootstrap Off Canvas Content Panels with Buttons

Utilising a Bootstrap 4 WordPress theme – below code snippets to toggle off-canvas content.For multiple panels of content the trigger button data attribute – data-trigger needs a unique value that matches its content panel in the case below it is…
Output WordPress Custom Query Posts Loop in Bootstrap Modals

Here is some code to output a custom loop via Shortcode that will display a posts full content in a Bootstrap Modal without linking back to the single post page. This is done on a WordPress theme that has the…
Change ‘Return To Store’ text button in WooCommerce

WooCommerce version 2.6 has brought out a new text filter that lets you change the text of ‘Return To Store’ on the button that appears on the cart page when the cart is empty. The filter is called woocommerce_return_to_shop_text and…
Create a WooCommerce Featured Products Loop of Featured Images

Here is a guide on how to create a WooCommerce featured products loop of featured images. The featured product option is chosen from the star column in the WordPress dashboard backend of the WooCommerce products, ‘featured’ it is a term…
Create a slider of WooCommerce Product Featured Images

Here is how you can create a slider of WooCommerce product featured images using a jQuery slider. There are many slider scripts you can use, this one uses Slick Center Mode, this one from Slick adds a CSS class on…
Adding Bootstraps Collapse to a Beaver Builder button and module

If you have the Beaver Theme as your WordPress theme, here is how you can add Bootstraps Collapse effect to a Beaver Builder row or module can be achieved using the Bootstrap data-toggle and data-target attribute.You need to have the…
Updating WordPress Plugins Versions with wp-cli

With wp-cli installed on your webhosting you can upgrade your WordPress plugins to specific versions of the plugin, all plugins, all but certain plugins and minor or patch releases. Also you can test the update with a dry run option…
Adding jQuery Slide Toggle to a Beaver Builder button and module

Adding a jQuery Slide Toggle effect to a Beaver Builder row or module can be achieved with some Javascript and CSS. Let’s say you have a button which when clicked reveals a module below it and another click hides the…