Search code examples
wordpresswoocommercehookcart

How can I remove Shipping from a WooCommerce cart?


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


Solution

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