Разрешить добавлять в корзину только товары той же родительской категории в WooCommerce - PullRequest
1 голос
/ 04 июня 2019

Я работаю с двумя основными родительскими категориями в моем магазине, каждая из которых подразделяется почти на 10 категорий.

У меня есть сценарий, который ограничивает количество категорий, добавляемых в корзину, 1. Что я могу сделать, чтобы изменить его только на родительские категории?

function is_product_the_same_cat($valid, $product_id, $quantity) {
    global $woocommerce;
    if($woocommerce->cart->cart_contents_count == 0){
         return true;
    }
    foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
        $_product = $values['data'];
        $terms = get_the_terms( $_product->id, 'product_cat' );
        $target_terms = get_the_terms( $product_id, 'product_cat' );
        foreach ($terms as $term) {
            $cat_ids[] = $term->term_id;  
        }
        foreach ($target_terms as $term) {
            $target_cat_ids[] = $term->term_id; 
        }           
    }
    $same_cat = array_intersect($cat_ids, $target_cat_ids);
    if(count($same_cat) > 0) return $valid;
    else {
        wc_add_notice( 'Solo pueden comprarse productos de una misma categoría.', 'error' );
        return false;
    }
}
add_filter( 'woocommerce_add_to_cart_validation', 'is_product_the_same_cat',10,3);

1 Ответ

0 голосов
/ 04 июня 2019

Начиная с WooCommerce 3, код, который вы используете, устарел ... Следующее будет работать с родительской категорией продукта, позволяя добавлять в корзину только ту же родительскую категорию продукта:

add_filter( 'woocommerce_add_to_cart_validation', 'avoid_add_to_cart_from_different_main_categories', 10, 3 );
function avoid_add_to_cart_from_different_main_categories( $passed, $product_id, $quantity ) {
    $cart      = WC()->cart;
    $taxonomy  = 'product_cat';
    $ancestors = [];

    if( $cart->is_empty() )
         return $passed;

    $terms = (array) wp_get_post_terms( $product_id, $taxonomy, array('fields' => 'ids') );

    if( count($terms) > 0 ) {
        // Loop through product category terms  set for the current product
        foreach( $terms as $term) {
            foreach( get_ancestors( $term, $taxonomy ) as $term_id ) {
                $ancestors[(int) $term_id] = (int) $term_id;
            }
        }


        // Loop through cart items
        foreach ( $cart->get_cart() as $item ) {
            $terms = (array) wp_get_post_terms( $item['product_id'], $taxonomy, array('fields' => 'ids') );
            if( count($terms) > 0 ) {
                // Loop through product category terms set for the current cart item
                foreach( $terms as $term) {
                    foreach( get_ancestors( $term, $taxonomy ) as $term_id ) {
                        $ancestors[(int) $term_id] = (int) $term_id;
                    }
                }
            }
        }

        // When there is more than 1 parent product category
        if( count($ancestors) > 1 ) {
            wc_add_notice( __('Only products of the same category can be purchased together.'), 'error' );
            $passed = false; 
        }
    }
    return $passed;
}

Код помещается в файл functions.php вашей активной дочерней темы (или активной темы). Проверено и работает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...