Always try to speed up the WooCommerce checkout as much as your can for your customers. A quick tip is to uncheck the “Ship to different address” checkbox by default. Customers do not commonly use this features and it’s a waste of their time having to untick it. So let’s speed up the time checkout process! Simply drop the following code snippet into your Child theme’s functions.php.
Snippet to uncheck Ship to a different address
// Auto uncheck "Ship to a different address"
add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );
That’s it! Have a look to make sure it worked and clear any cache if you have to. I have a few more WooCommerce Tip’s and Trick’s around the site, which are also useful.
Drop a comment below if you used the snippet ?