在WooCommerce中删除特定条件下的送货

时间:2018-05-18 16:38:23

标签: wordpress woocommerce shipping

我需要在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;   
    }
}

0 个答案:

没有答案