2013-07-12 118 views

回答

0

像這樣的事情可以做:

add_action('woocommerce_before_checkout_process','add_discount_at_checkout'); 

function add_discount_at_checkout(){ 
global $woocommerce; 
$minorder = 99; 
if($woocommerce->cart->get_cart()->cart_contents_total>$minorder){ 

//APPLY COUPON HERE 

} 
} 

所以基本上,如果你的車的總金額大於99,你可以做一些事情,比如添加優惠券。

相關問題