1
在WooCommerce,我使用下面的代碼添加$ 12個收費在functions.php
文件中的子主題的銷量爲加拿大客戶爲我的客戶之一。定製woocommerce購物車收費取決於產品種類(非PDF)
但我需要刪除的收費全部下載PDF文件。
這可能改變我使用的代碼?
這裏是我的代碼:
add_action('woocommerce_cart_calculate_fees','xa_add_surcharge');
function xa_add_surcharge() {
global $woocommerce;
if (is_admin() && ! defined('DOING_AJAX'))
return;
$county = array('CA');
$fee = 12.00;
if (in_array($woocommerce->customer->get_shipping_country(), $county)) :
$surcharge = + $fee;
$woocommerce->cart->add_fee('Surcharge for International Orders', $surcharge, true, '');
endif;
}
謝謝soooooo了,這完美地工作,託尼 –