如何从 WooCommerce 购物车中删除运费?
How can I remove Shipping from a WooCommerce cart?
我需要从购物车中删除运费和运费计算。是否可以用钩子删除?
模板是:http://flatsome.uxthemes.com/cart/
WooCommerce Cart
将以下代码段添加到您的 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 );
请按照以下步骤操作:
步骤 1 - 实际上有一个设置:在 WooCommerce > Shipping
下禁用它
步骤 2 -取消选中“在购物车页面上启用运费计算器”
我需要从购物车中删除运费和运费计算。是否可以用钩子删除?
模板是:http://flatsome.uxthemes.com/cart/
WooCommerce Cart
将以下代码段添加到您的 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 );
请按照以下步骤操作:
步骤 1 - 实际上有一个设置:在 WooCommerce > Shipping
步骤 2 -取消选中“在购物车页面上启用运费计算器”