在Woocommerce中超过x金额时,仅显示免费送货

时间:2018-01-06 20:30:38

标签: php wordpress woocommerce cart shipping

如果有免费送货,我试图隐藏“固定费率”。

add_filter( 'woocommerce_package_rates', 'hide_other_shipping_when_free_is_available', 100, 2 );

function hide_other_shipping_when_free_is_available( $rates, $package ) {

    $free = array();
    foreach ( $rates as $rate_id => $rate ) {
        if ( 'free_shipping' === $rate->method_id ) {
            $free[ $rate_id ] = $rate;
            break;
        }
    }
    return ! empty( $free ) ? $free : $rates;
}

我找到了以下代码段并添加到我的functions.php中,但它并未隐藏统一费率运费选项。

1 个答案:

答案 0 :(得分:1)

此代码仍适用于woocommerce版本2.6+(也是3.2.x)

缺少的部分是您在function.php文件中保存代码后,需要刷新发货缓存数据:

在woocommerce送货设置中禁用,保存并启用,保存当前送货区的相关送货方式。