我需要在WooCommerce中删除特定条件下的送货。由于条件太具体,我无法使用任何插件。到目前为止,我有这个代码(简化版),它适用于cart
页面,但我还无法计算出checkout
页面。
add_action('woocommerce_before_cart_table', 'discount_when_foo_is_bar');
function discount_when_foo_is_bar() {
if($foo==$bar){
$woocommerce->cart->total -= $woocommerce->cart->shipping_total;
$woocommerce->cart->shipping_total=0;
}
}