【问题标题】:Woocommerce change the shipping cost related with the subtotalWoocommerce 更改与小计相关的运费
【发布时间】:2017-10-08 10:44:57
【问题描述】:

我想知道如何更改运费,例如:

如果小计低于 10 欧元,则运费为 4.5 欧元 如果小计相同或高于 10 欧元,则运费为 2.5 欧元

【问题讨论】:

标签: woocommerce shipping


【解决方案1】:

正确的做法是这样的:

add_filter( 'woocommerce_package_rates', 'woocommerce_package_rates', 10, 2 );
function woocommerce_package_rates( $rates, $package ) {

    $new_cost = ( WC()->cart->subtotal < 10 ) ? 4.5 : 2.5;

    foreach($rates as $key => $rate ) {
        $rates[$key]->cost = $new_cost;
    }

    return $rates;
}

更多关于它here.

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2019-09-12
    • 2018-02-09
    • 1970-01-01
    • 2018-07-14
    • 1970-01-01
    • 2021-05-28
    • 2020-09-12
    相关资源
    最近更新 更多