非常感谢您的阅读,
我目前正在尝试设置发送的woocommerce捆绑率。我已经添加了辅助插件,一切都很棒!我只是想知道如何通过常规邮寄(非快递)
为超过99美元的订单设置免费送货所以基本上现在发生的事情是订单超过99美元时,用户可以选择免费选择快递。
当订单超过99美元时,现在发生了什么:
我想要发生什么:
我的钩子:
add_filter( 'woocommerce_brs_shipping_total', 'franks_custom_woocommerce_brs_shipping_total_filter' );
function franks_custom_woocommerce_brs_shipping_total_filter( $shipping_total ) {
global $woocommerce;
// If there is more than $99 in the cart, set shipping to $0
if ( $woocommerce->cart->cart_contents_total > 99 ) {
return 0;
}
// Otherwise, return the default shipping rate
return $shipping_total;
}
代码取自:
http://codecanyon.net/item/woocommerce-ecommerce-bundle-rate-shipping/1429243
代码示例问题:
如果购物车总额超过99美元,它只返回0,我需要将if条件更改为仅适用于"常规运费"选项希望这有助于明确理解
由于