How to remove Shipping from Woocommerce cart?

Jakub Lang picture Jakub Lang · May 18, 2016 · Viewed 37.6k times · Source

I have one question. I need remove shipping and shipping calculate from cart. Its possible delete with hooks? I am newbie in this.

Template is: http://flatsome.uxthemes.com/cart/

I'll be glad for any advice. Thanks.

Cart Woocommmerce

Answer

Sark picture Sark · May 18, 2016

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