Stop WooCommerce checkout fields auto-filling – leave blank

You can stop WooCommerce checkout fields from auto filling by using a Woo filter woocommerce_checkout_get_value, this could be useful in a situation when a logged in user is ordering on behalf of multiple customers.add_filter( ‘woocommerce_checkout_get_value’,’prefix_return_empty_checkout’, 1, 1 ); function prefix_return_empty_checkout(){…
Add a menu to WordPress page with PHP action hooks

Adding a menu to WordPress via PHP and action hooks requires three steps, registering the menu location, assigning a menu to it and then placing the menu with an action hook. Register WordPress Menu Registering a menu is done with…
How to turn off Auto-correct on macOS Big Sur for all applications

Auto-correct seems to be enabled by default in some macOS computers which can be a pain especially in Mail, and any application which you are typing a lot and simply don’t need it. Here is how to turn off auto-correct…
Change WooCommerce SKU text to another label

You can change WooCommerce SKU text to another label using the gettext filter add_filter(‘gettext’, ‘translate_woocommerce’, 10, 3); /** * Change SKU Label * @link https://gist.github.com/dannyconnolly/da6f1a2d95dc826ccdcd * @since 1.0.0 */ function translate_woocommerce($translation, $text, $domain) { if ($domain == ‘woocommerce’) { switch…
Show only free shipping option on WooCommerce cart and checkout pages

By default WooCommerce will show all available shipping options on cart and checkout pages, if you have free shipping as an option you may just want that displayed by itself. The code snippet below which needs to be added to…
Filter WooCommerce orders by payment gateway

Here is how you can filter WooCommerce orders by payment gateway in the WordPress dashboard orders screen using a plugin from SkyVerge. Add the php file directly or in a folder in the /wp-content/plugins/ directory and then activate the plugin…
Redirect an admin user role on login with login redirect

You can redirect a user based on their WordPress role with the login_redirect filter. add_filter( ‘login_redirect’, ‘themeprefix_login_redirect’, 10, 3 ); /** * Redirect user after successful login. * * @param string $redirect_to URL to redirect to. * @param string $request…
Hide the Description and Reviews Tabs in WooCommerce Products

WooCommerce products by default show ‘description’ and ‘reviews’ tabs below the product on a WordPress product page, you can hide these tabs from view as well as a third tab ‘additional information’ with a snippet of code that goes in your…
Add qty inputs next to add to cart button with and without Ajax reload on WooCommerce archives

Here is how you can add qty inputs next to add to cart with Ajax reload on WooCommerce archives. Without Ajax Reload add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘quantity_inputs_for_woocommerce_loop_add_to_cart_link’, 10, 2 ); /** * Override loop template and show quantities next to add to…
Disable Lazy Loading in WordPress with a filter

Since WordPress 5.5, lazy loading for images was implemented, this improves the perception of page load as the image is only loaded once in the viewport window. You may not light it as it can have a jarring effect as…