Woocommerce pulgin - 嗨,我正在为我的网站http://fashions.aad-on.com寻找一个 wordpress 插件,以在“如果购物车总金额超过特定金额”时对总购物车应用折扣。示例:如果总购物车等于或超过 $ 500,则总购物车 10% 折扣/-
问问题
5396 次
1 回答
4
你不需要额外的插件。它包含在 WooCommerce 核心中。
创建优惠券 -> 给它一个代码 -> 选择折扣类型Cart % discount
-> 设置Coupon amount
为 10 -> 设置Minimum amount
为 500 -> 保存优惠券。你完成了!
要自动应用优惠券代码,请尝试以下代码:
add_action( 'woocommerce_before_cart', 'apply_matched_coupons' );
function apply_matched_coupons() {
global $woocommerce;
$coupon_code = '10percent'; // your coupon code here
if ( $woocommerce->cart->has_discount( $coupon_code ) ) return;
if ( $woocommerce->cart->cart_contents_total >= 500 ) {
$woocommerce->cart->add_discount( $coupon_code );
$woocommerce->show_messages();
}
}
于 2013-07-18T16:54:36.603 回答