WooCommerce Always Include Shipping Information in Checkout [closed]

This is actually pretty easy. You just have to add this snippet to your functions.php file.

add_filter( 'woocommerce_cart_needs_shipping', '__return_true' );

Leave a Comment