如果购物车包含特定类别,则禁止添加到购物车(WooCommerce)

时间:2017-07-19 11:32:58

标签: php wordpress woocommerce

我有一个包含5个类别的商店。它是多厂商,由于运输复杂性,我只能在购物车中单独销售一种特定类别(“油漆”)的产品。因此,当购物车包含油漆时,我需要防止添加到任何非油漆产品的购物车,并显示错误消息,我需要防止油漆产品被添加到包含任何其他类别的购物车,并且显示错误消息。< / p>

我试图从我在Stackoverflow和其他地方发现的片段中拼凑出这段代码。逻辑似乎在我的大脑中起作用,但是当我尝试实现代码时(通过functions.php)它会阻止任何产品被添加到购物车中,除非购物车是空的。

这是我的代码:

//*** Prevent mixture of paint and other prods in same cart ***//
function dont_add_paint_to_cart_containing_other() {

// Set flag false until we find a product in cat paint
$cat_check = false;

// Set $cat_check true if a cart item is in paint cat
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {

    $product = $cart_item['data'];

    if ( has_term( 'paint', 'product_cat', $product->id ) ) {
                $cat_check = true;
        // break because we only need one "true" to matter here
        break;
        }
}
// Return true if cart empty
if ( WC()->cart->get_cart_contents_count() == 0 ) {
    return true;
    }
    // If cart contains paint and product to be added is not paint, display error message and return false.
    elseif ( $cat_check && get_queried_object()->term_id != '245778522') {
        wc_add_notice( 'Sorry, you can only purchase paint products on their own. To purchase this product, please checkout your current cart or empty your cart and try again' , 'error' );
        return false;
    }
    // If cart contains a product that is not paint and product to be added is paint, display error message and return false.
    elseif (!$cat_check && get_queried_object()->term_id = '245778522') {
        wc_add_notice( 'Sorry, you can only purchase paint products on their own. To purchase this product, please checkout your current cart or empty your cart and try again' , 'error' );
        return false;
    }
    // Otherwise, return true.
    return true;
}

add_filter( 'woocommerce_add_to_cart_validation', 'dont_add_paint_to_cart_containing_other' );

2 个答案:

答案 0 :(得分:1)

//*** Prevent mixture of paint and other prods in same cart ***//
function dont_add_paint_to_cart_containing_other($validation, $product_id) {

// Set flag false until we find a product in cat paint
    $cart_has_paint = false;

// Set $cat_check true if a cart item is in paint cat
    foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) {

        $product = $cart_item['data'];

        if (has_term('paint', 'product_cat', $product->id)) {
            $cart_has_paint = true;
            // break because we only need one "true" to matter here
            break;
        }
    }

    $product_is_paint = false;
    if (has_term('paint', 'product_cat', $product_id)) {
        $product_is_paint = true;
    }

// Return true if cart empty
    if (!WC()->cart->get_cart_contents_count() == 0) {
        // If cart contains paint and product to be added is not paint, display error message and return false.
        if ($cart_has_paint && !$product_is_paint) {
            wc_add_notice('Sorry, you can only purchase paint products on their own. To purchase this product, please checkout your current cart or empty your cart and try again', 'error');
            $validation = false;
        }
        // If cart contains a product that is not paint and product to be added is paint, display error message and return false.
        elseif (!$cart_has_paint && $product_is_paint) {
            wc_add_notice('Sorry, you can only purchase paint products on their own. To purchase this product, please checkout your current cart or empty your cart and try again', 'error');
            $validation = false;
        }
    }
    // Otherwise, return true.
    return $validation;
}

add_filter('woocommerce_add_to_cart_validation', 'dont_add_paint_to_cart_containing_other', 10, 2);

更改为

答案 1 :(得分:0)

ShouldSerializeXXX

更改此..您的if条件需要'=='