How to remove Shipping from Woocommerce cart? [clo

2020-02-06 03:21发布

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

2条回答
Juvenile、少年°
2楼-- · 2020-02-06 03:36

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 );
查看更多
混吃等死
3楼-- · 2020-02-06 03:49

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"

查看更多
登录 后发表回答