2
我想添加費用根據數量。 對於例如:如果在購物= 5量,然後將要添加的費應該是4 $, 若,則待添加的費用量在購物= 7應爲8 $woocommerce根據數量增加到購物車的收費
我試圖此代碼獲取數量。
add_action('woocommerce_before_calculate_totals', 'woocommerce_custom_surcharge');
function woocommerce_custom_surcharge() {
global $woocommerce;
$amount = $woocommerce->cart->get_cart_item_quantities();
if($amount==5)
{
$excost = 7;
}
else if($amount==7){
$excost = 8;
}
$woocommerce->cart->add_fee('Charges delivery', $excost, $taxable = false, $tax_class = '');
}
請幫助一致。