在Woocommerce购物车中自动应用或删除优惠券以获取特定产品ID

时间:2018-04-09 17:25:40

标签: php wordpress woocommerce cart coupon

当购物车中有产品ID 1362时,我会自动申请优惠券,但是当有人添加其他产品并删除1362优惠券仍然适用时,如果没有1362产品ID,如何通过删除优惠券来防止这种情况在与Woocommerce的购物车?

我知道我们可以限制优惠券到产品但我不想要这个,我希望我的优惠券只有在这个购物车中有ID为1362的产品时才能应用于所有产品购物车。

add_action( 'woocommerce_before_cart', 'bbloomer_apply_matched_coupons' );

function bbloomer_apply_matched_coupons() {
    global $woocommerce;
    $coupon_code = 'boxpersonnalisable'; 
    if ( $woocommerce->cart->has_discount( $coupon_code ) ) return;
    foreach ( $woocommerce->cart->cart_contents as $key => $values ) {
    // this is your product ID
    $autocoupon = array( 1362 );
    if( in_array( $values['product_id'], $autocoupon ) ) {  
    add_filter('woocommerce_coupon_message','remove_msg_filter',10,3);
        $woocommerce->cart->add_discount( $coupon_code );
        wc_print_notices();
    }
    }
}

非常感谢

1 个答案:

答案 0 :(得分:1)

以下是在以下情况下使其有效的方法:

  • 在特定产品添加到购物车时添加特定优惠券代码
  • 在从购物车中移除特定产品时删除特定应用的优惠券代码
  • (在这两种情况下,您都可以显示自定义通知)...

代码:

add_action( 'woocommerce_before_calculate_totals', 'auto_add_remove_coupon' );
function auto_add_remove_coupon( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    $coupon_code = 'boxpersonnalisable';
    $targeted_product_ids = array( 1362 );
    $found = false;

    // Loop through cart items
    foreach ( $cart->get_cart() as $cart_item ){
        if( in_array( $cart_item['product_id'], $targeted_product_ids ) ){
            $found = true;
            break;
        }
    }

    if ( ! $cart->has_discount( $coupon_code ) && $found ) {
        $cart->add_discount( $coupon_code );
        wc_clear_notices();
        wc_add_notice( __("Your custom notice - coupon added (optional)","woocommerce"), 'notice');
    } elseif  ( $cart->has_discount( $coupon_code ) && ! $found ) {
        $cart->remove_coupon( $coupon_code );
        wc_clear_notices();
        wc_add_notice( __("Your custom notice - coupon removed (optional)","woocommerce"), 'notice');
    }
}

代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作