Wordpress插件在总购物车上应用折扣

时间:2013-07-18 13:36:01

标签: wordpress-plugin woocommerce

Woocommerce pulgin - 嗨,我正在为我的网站http://fashions.aad-on.com寻找一个wordpress插件,在总购物车上应用折扣“如果购物车总金额超过特定金额”。 示例:如果购物车总数等于或超过$ 500 / -

,则购物车总折扣为10%

1 个答案:

答案 0 :(得分: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();
    }

}