我想根據藝術總額中的特定金額添加費用。我想顯示購物車總數是否等於或大於總「$$$」金額添加費用,否則不要添加。根據WooCommerce中的特定購物車總額添加費用
我知道這項工作將其添加到總計,但我不認爲它是檢查,看它是否低於美元金額。
function woo_add_custom_fees(){
$cart_total = 0;
// Set here your percentage
$percentage = 0.15;
foreach(WC()->cart->get_cart() as $item){
$cart_total += $item["line_total"];
}
$fee = $cart_total * $percentage;
if ( WC()->cart->total >= 25) {
WC()->cart->add_fee("Gratuity", $fee, false, '');
}
else {
return WC()->cart->total;
}
}
add_action('woocommerce_cart_calculate_fees' , 'woo_add_custom_fees');
add_action('woocommerce_after_cart_item_quantity_update', 'woo_add_custom_fees');
我在做什麼錯了?
'else'部分是「下」 – Reigel