16

I need to remove shipping and shipping calculate from a cart. Is it possible to delete with hooks?

The template is: http://flatsome.uxthemes.com/cart/

WooCommerce Cart

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Jakub Lang
  • 181
  • 1
  • 1
  • 6

2 Answers2

60

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 );
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Sark
  • 4,458
  • 5
  • 26
  • 25
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"

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Purvik Dhorajiya
  • 4,662
  • 3
  • 34
  • 43