How can I remove Shipping from a WooCommerce cart? [closed]
Solution 1:
Add the following snippet to your functions.php file:
function disable_shipping_calc_on_cart( $show_shipping ) {
if( is_cart() ) {
return false;
}
return $show_shipping;
}
add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'disable_shipping_calc_on_cart', 99 );
Solution 2:
Please follow the below steps:
Step 1 - There’s actually a setting for this: disable it under WooCommerce > Shipping
Step 2 - Uncheck "Enable the shipping calculator on the cart page"