如果购物车中的某些产品没有应用优惠券,则阻止结帐

Prevent checkout if no coupon has been applied when certain products in cart

我在 WooCommerce 网站上工作,我试图限制只有在申请了优惠券时才能购买的产品,因此在没有添加优惠券代码的情况下不应进行处理。

用户必须输入优惠券代码才能订购该特定产品(不适用于所有其他产品)。

我们不需要它来定位特定的优惠券以允许结账,我们需要它来要求任何优惠券,因为对于这个特定的产品,我们有大约 150 多张优惠券。

基于 代码线程:

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
        }
    }
}

如何处理:购物车中有特定商品时,如果没有使用优惠券,则阻止结帐。

这是删除或调整一些条件的问题。例如,检查优惠券是否已使用

  • empty - 判断一个变量是否为空

所以你得到:

function action_woocommerce_check_cart_items() {
    // The targeted product ids (in this array)
    $targeted_ids = array( 813, 30 );

    // Get applied coupons
    $coupon_applieds = WC()->cart->get_applied_coupons();
    
    // Empty coupon applieds
    if ( empty ( $coupon_applieds ) ) {

        // Loop through cart items
        foreach( WC()->cart->get_cart() as $cart_item ) {
            // Check cart item for defined product Ids
            if ( in_array( $cart_item['product_id'], $targeted_ids )  ) {
                // Clear all other notices          
                wc_clear_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' );
                
                // Optional: remove proceed to checkout button
                remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 );
                
                // Break loop
                break;
            }
        }
    }
}   
add_action( 'woocommerce_check_cart_items' , 'action_woocommerce_check_cart_items', 10, 0 );