How to remove Shipping from Woocommerce cart? [closed] How to remove Shipping from Woocommerce cart? [closed] wordpress wordpress

How to remove Shipping from Woocommerce cart? [closed]


Add the following snippet on your functions.php

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 );


Can you please follow 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"