禁用Woocommerce中特定类别的购物车商品的其他产品类别

时间:2018-10-01 20:20:29

标签: php wordpress woocommerce product custom-taxonomy

我正在开发一个具有不同方面的网上商店,第一个是常规商店,第二个是夜啤酒服务。我搜索了但找不到我想要的东西;

首先,夜间啤酒服务是特定类别,不应与常规物品一起订购(如果购物车中的类别为"0.990" %in% c(0.99) #> [1] FALSE ,则禁止将所有其他类别添加到购物车中。)

此选项也需要反之亦然(另一个麻烦),因此,如果将常规商品添加到购物车,则应禁用'beerservice'类别才能添加到购物车。

我正在使用以下发现的答案代码:
Disable shopping when an item from a specific product category is in cart in Woocommerce

这部分地完成了这项工作,但是只能添加同一类别的多个产品,并且反之亦然。我已替换为这段代码

我还想添加一个特定于时间的消息,例如“不会交付超过TIME的订单”(对此不做研究),但是如果麻烦不大的话。

1 个答案:

答案 0 :(得分:1)

此代码将检查父产品类别,因此对于已定义的产品类别,它将:

  • 当已定义类别位于购物车中时,请避免将其他产品类别添加到购物车中。
  • 将已定义类别的产品添加到购物车时,它将从其他产品类别中删除购物车项目。

改进的代码:

// Custom conditional function that checks for parent product categories
function has_parent_term( $product_id ) {
    // HERE set your targeted product category SLUG
    $category_slug = 'beerservice'; //  <====  <====  <====  <====  <====  <====  <====

    // Convert category term slug to term id
    $category_id   = get_term_by('slug', $category_slug, 'product_cat')->term_id;
    $parent_term_ids = array(); // Initializing

    // Loop through the current product category terms to get only parent main category term
    foreach( get_the_terms( $product_id, 'product_cat' ) as $term ){
        if( $term->parent > 0 ){
            $parent_term_ids[] = $term->parent; // Set the parent product category
        } else {
            $parent_term_ids[] = $term->term_id;
        }
    }
    return in_array( $category_id, $parent_term_ids );
}

// Avoid add to cart others product categories when "beerservice" is in cart
add_filter( 'woocommerce_add_to_cart_validation', 'specific_category_avoid_add_to_cart_others', 20, 3 );
function specific_category_avoid_add_to_cart_others( $passed, $product_id, $quantity) {
    if( WC()->cart->is_empty() || has_parent_term( $product_id ) ) {
        return $passed;
    }

    foreach( WC()->cart->get_cart() as $cart_item ){
        if( has_parent_term( $cart_item['product_id'] ) ) {
            wc_add_notice( __('Alert message 1 (avoid add to cart)', 'woocommerce' ), 'error' ); // Display a custom error notice
            return false; // Avoid add to cart
        }
    }
    return $passed;
}

// Remove other items when our specific product is added to cart
add_action( 'woocommerce_add_to_cart', 'conditionally_remove_other_products', 20, 4 );
function conditionally_remove_other_products ( $cart_item_key, $product_id, $quantity, $variation_id ){
    if( has_parent_term( $product_id ) ) {
        foreach( WC()->cart->get_cart() as $item_key => $cart_item ){
            if( ! has_parent_term( $cart_item['product_id'] ) ) {
                WC()->cart->remove_cart_item( $item_key );
                wc_add_notice( __('Alert message 2 (Item removed from cart)', 'woocommerce' ), 'error' ); // Display a custom error notice
            }
        }
    }
}

代码进入您的活动子主题(活动主题)的function.php文件中。经过测试,可以正常工作。


相关:Disable shopping when an item from a specific product category is in cart in Woocommerce