wordpress 如何从 Woocommerce 购物车中删除运费?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/37304801/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 11:12:52  来源:igfitidea点击:

How to remove Shipping from Woocommerce cart?

wordpresswoocommercehookcart

提问by Jakub Lang

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/

模板为:http: //flatsome.uxthemes.com/cart/

I'll be glad for any advice. Thanks.

我很乐意提供任何建议。谢谢。

Cart Woocommmerce

购物车

回答by Sark

Add the following snippet on your functions.php

将以下代码段添加到您的 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 );

回答by Purvik Dhorajiya

Can you please follow below steps?

你能按照下面的步骤吗?

Step 1 -There's actually a setting for this: disable it under WooCommerce > Shipping

步骤 1 -实际上有一个设置:在下面禁用它WooCommerce > Shipping

Step 2 -Uncheck "Enable the shipping calculator on the cart page"

第 2 步 -取消选中“在购物车页面上启用运费计算器