Enable the shipping calculator on the cart page don’t work
-
Hello!
Enable the shipping calculator on the cart page don’t work check or uncheck.
Only with code disable it:
add_filter( ‘woocommerce_cart_needs_shipping’, ‘filter_cart_needs_shipping’ );
function filter_cart_needs_shipping( $needs_shipping ) {
if ( is_cart() ) {
$needs_shipping = false;
}
return $needs_shipping;
}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.