Add WordPress Admin Account to Database wp_users Table

Here is a guide on how you can add in a newWordPress admin account username and password to the database. What you do need to do this have access to the WordPress database by having the database name and password.…
Hiding a WordPress Development Site from Googles Search Engine Index

Hiding a WordPress development website from the Google search engine index is something you need to do and can be done in a couple of ways. Why you need to do it is that once your pages are indexed they’ll…
Change the Keyboard Shortcut Keys in Beaver Builder 2 Plugin

You can modify the Beaver Builder keyboard shortcut keys in the new version 2 of the plugin by using a filter – fl_builder_keyboard_shortcuts that you add to your themes functions.php file, example below add_filter( ‘fl_builder_keyboard_shortcuts’, ‘get_keyboard_shortcuts_mine’ ); /** * Modify…
Override the Beaver Builder Global Settings Including Media Query Breakpoints

Beaver Builder Global Settings can be overridden including the Media Query breakpoints via the Tools > Global Settings in the Beaver Builder interface. If you have a starter theme you can permanently override these settings by using the fl_builder_register_settings_form…
Displaying Featured Products in WooCommerce

WooCommerce has products called Featured Products which are products what become featured when they are starred in the WP Admin dashboard. Here is how you can display them. Featured Products Shortcode Display WooCommerce Featured Products via shortcode like so:…
Add WooCommerce Product Category Dropdown to Shop & Archive Pages

WooCommerce has a Product Category dropdown list of available product categories which filter and refresh the page based on product selection. It is assigned via a Widget and easy enough to put in the sidebar. But what about adding it…
Adjusting WooCommerce Price Description with ACF Custom Field

Using a simple ACF field you can adjust the WooCommerce pricing type per item with a dropdown selection that will display after the price in the product, shop, cart and checkout page. Create a select dropdown in ACF. This example…
Change WooCommerce Price to be by Weight

You can change the WooCommerce price to be by weight by appending some text after the actual price such as ‘per kg’, this can be done by manipulating 3 filters that display the price in the shop/product page, cart and…
Hide Amount of Items from Add to Cart Message in WooCommerce

Need to hide the amount of items added to the cart in the success message that appears after adding an item in WooCommerce, the wc_add_to_cart_message_html filter has you covered. Add the below code snippet to your functions.php https://gist.github.com/neilgee/e037ee587b318a7e7369359ec48c39d6 On line 24 a…
WordPress Custom Fields Missing When ACF is Active

When the plugin ACF or ACF Pro 5.6.0 is active the native WordPress Custom Fields on post, pages or CPTs is not visible and gone missing. If you disable the ACF plugin the custom fields are visible again. The functionality…