仅当在Woocommerce中应用了优惠券时才允许购买特定产品

时间:2019-05-11 21:03:55

标签: php wordpress woocommerce cart coupon

我正在woocommerce网站上工作,我试图限制仅在应用了优惠券的情况下才能购买产品,因此,如果不添加优惠券代码,则不应对其进行处理。用户必须输入优惠券代码才能订购该特定产品(并非在所有其他产品上订购)。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

对于已定义的产品,如果未应用优惠券,则以下代码将不允许结帐,并显示错误消息:

add_action( 'woocommerce_check_cart_items', 'mandatory_coupon_for_specific_items' );
function mandatory_coupon_for_specific_items() {
    $targeted_ids   = array(37); // The targeted product ids (in this array)
    $coupon_code    = 'summer2'; // The required coupon code

    $coupon_applied = in_array( strtolower($coupon_code), WC()->cart->get_applied_coupons() );

    // Loop through cart items
    foreach(WC()->cart->get_cart() as $cart_item ) {
        // Check cart item for defined product Ids and applied coupon
        if( in_array( $cart_item['product_id'], $targeted_ids ) && ! $coupon_applied ) {
            wc_clear_notices(); // Clear all other notices

            // Avoid checkout displaying an error notice
            wc_add_notice( sprintf( 'The product"%s" requires a coupon for checkout.', $cart_item['data']->get_name() ), 'error' );
            break; // stop the loop
        }
    }
}

代码进入活动子主题(或活动主题)的functions.php文件中。经过测试,可以正常工作。

enter image description here

并在结帐时:

enter image description here