Woocommerce 更改与小计相关的运费
Woocommerce change the shipping cost related with the subtotal
我想知道如何更改运费,例如:
如果小计低于 10 欧元,则运费为 4.5 欧元
如果小计等于或高于 10 欧元,则运费为 2.5 欧元
正确的做法是这样的:
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。
我想知道如何更改运费,例如:
如果小计低于 10 欧元,则运费为 4.5 欧元 如果小计等于或高于 10 欧元,则运费为 2.5 欧元
正确的做法是这样的:
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。