Не добавляйте в корзину товары из разных категорий товаров в WooCommerce - PullRequest
1 голос
/ 24 апреля 2019

В WooCommerce я попытался " Ограничить элементы корзины из той же категории продуктов " кодом ответа, и это работает. Но если пользователь добавляет товар со страницы товара, товар будет в корзине.

Любой совет или помощь, пожалуйста?

1 Ответ

0 голосов
/ 24 апреля 2019

Поскольку хук woocommerce_add_to_cart_validation находится в методах WC_Cart и WC_Ajax add_to_cart(), он срабатывает, когда товар добавляется в корзину через ajax или обычно через отдельные страницы товара ... Таким образом, код работает во всех случаях при добавлении в корзину событие.


Обработка родительских категорий товаров тоже

Теперь " Ограничение элементов корзины из той же категории продукта в WooCommerce " не обрабатывает категории родительских продуктов, так как условная функция WordPress has_term() не обрабатывает родительские категории термины, так что родительские категории продуктов.

Чтобы он работал и с родительскими категориями товаров, вам потребуется нечто более сложное:

add_filter( 'woocommerce_add_to_cart_validation', 'custom_checking_product_added_to_cart', 10, 3 );
function custom_checking_product_added_to_cart( $passed, $product_id, $quantity) {

    // HERE your alert text message
    $message = __( 'MY ALERT MESSAGE.', 'woocommerce' );

    if( ! WC()->cart->is_empty() ) {
        $term_ids = array(); // Initializing

        // Loop through product category WP_Term objects set for the current the product
        foreach( wp_get_post_terms( $product_id, 'product_cat') as $term ) {
            $terms_ids[$term->term_id] = $term->term_id; // Add the term ID to the array

            // Add the parent term ID to the array, if it exist
            if( $term->parent > 0 )
                $terms_ids[$term->parent] = $term->parent; 
        }

        // Loop through cart items
        foreach (WC()->cart->get_cart() as $cart_item ){
            if( ! has_product_categories( $product_id, $term_ids ) ) {
                $passed = false;
                wc_add_notice( $message, 'error' );
                break;
            }
        }
    }
    return $passed;
}

// Custom conditional function that handle parent product categories too
function has_product_categories( $product_id, $categories ) {
     // Initializing
    $parent_term_ids = $categories_ids = array();
    $taxonomy        = 'product_cat';

    // Convert categories term names and slugs to categories term ids
    foreach ( $categories as $category ){
        if( is_numeric( $category ) ) {
            $categories_ids[] = (int) $category;
        } elseif ( term_exists( sanitize_title( $category ), $taxonomy ) ) {
            $categories_ids[] = get_term_by( 'slug', sanitize_title( $category ), $taxonomy )->term_id;
        }
    }

    // Loop through the current product category terms to get only parent main category term
    foreach( get_the_terms( $product_id, $taxonomy ) as $term ){
        if( $term->parent > 0 ){
            $parent_term_ids[] = $term->parent; // Set the parent product category
            $parent_term_ids[] = $term->term_id; // (and the child)
        } else {
            $parent_term_ids[] = $term->term_id; // It is the Main category term and we set it.
        }
    }
    return array_intersect( $categories_ids, array_unique($parent_term_ids) ) ? true : false;
}

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

Код протестирован и работает


Ограничение элементов корзины только для разных категорий продуктов

В первой функции заменить:

if( ! has_product_categories( $cart_item['product_id'], $term_ids ) ) {

от

if( has_product_categories( $cart_item['product_id'], $term_ids ) ) {

Связанный: Ограничение товаров в корзине для товаров той же категории в WooCommerce

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