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
How to remove Shipping from Woocommerce cart?
提问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.
我很乐意提供任何建议。谢谢。
回答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 );