Ограничение корзины woocommerce одним товаром из одной указанной категории c, но разрешено неограниченное количество товаров из других категорий. - PullRequest
0 голосов
/ 27 января 2020

Я нашел этот код, который ограничивает покупку пользователя одним на категорию для категорий по вашему выбору. Таким образом, в настоящее время пользователь может купить 1 товар у кошки. Проблема в том, что я хотел бы, чтобы этот элемент был удален, если клиент передумал и добавил элемент, отличный от cat a.

The $ max_num_products), 'error'); предотвращает добавление нового продукта и удаление старого продукта. (wc_add_notice не требуется), так как клиент выбирает «доставку» или «самовывоз»

Я добавил W C () -> cart-> empty_cart (); // это очищает всю корзину и добавляет новый выбор ... не то, что мне нужно.

Любая помощь очень ценится.

add_filter( 'woocommerce_add_to_cart_validation', 'allowed_quantity_per_category_in_the_cart', 10, 2 );function allowed_quantity_per_category_in_the_cart( $passed, $product_id) {

$max_num_products = 1;// change the maximum allowed in the cart
$running_qty = 0;

$restricted_product_cats = array();

//Restrict particular category/categories by category slug
$restricted_product_cats[] = 'cat-a';


// Getting the current product category slugs in an array
$product_cats_object = get_the_terms( $product_id, 'product_cat' );
foreach($product_cats_object as $obj_prod_cat) $current_product_cats[]=$obj_prod_cat->slug;


// Iterating through each cart item
foreach (WC()->cart->get_cart() as $cart_item_key=>$cart_item ){

    // Restrict $max_num_products from each category
    if( has_term( $current_product_cats, 'product_cat', $cart_item['product_id'] )) {

        // count(selected category) quantity
        $running_qty += (int) $cart_item['quantity'];

        // More than allowed products in the cart is not allowed
        if( $running_qty >= $max_num_products ) {
            wc_add_notice( sprintf( 'Only %s '.($max_num_products>1?'products from this category are':'product from this category is').' allowed in the cart.',  $max_num_products ), 'error' );

        //$passed = WC()->cart->empty_cart(); // this empties the entire cart and adds new selection... not what I need
          $passed = false; // don't add the new product to the cart
            // We stop the loop
            break;
        }

    }
}
return $passed;}
...