首页 > 解决方案 > 在 WooCommerce 中删除特定条件下的运费

问题描述

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

标签: wordpresswoocommerceshipping

解决方案


推荐阅读