仅当购物车商品来自3个不同的商品类别时,自动添加优惠券折扣

时间:2017-11-15 06:15:03

标签: php wordpress woocommerce cart coupon

IN WooCommerce我想在WooCommerce 优惠券功能中添加10%的折扣,仅当客户从3个不同的产品类别(如Category1,Category2,Category3)购买产品时

如何使用WooCommerce优惠券功能完成此操作?

对此有任何帮助将不胜感激。

更新说明:我只有3个没有子类别的父产品类别。每个产品都分配到一个类别。有些产品是可变的,有些则很简单。

2 个答案:

答案 0 :(得分:2)

这是一个不使用我之前question回收的优惠券代码的解决方案。

add_action( 'woocommerce_cart_calculate_fees' , 'add_multiple_category_discount' );

function add_multiple_category_discount( $cart ){
    if( $cart->cart_contents_count < 3 ){
        return;
    }

    $product_cats = array();

    foreach( $cart->get_cart() as $item ) {
        $product = wc_get_product( $item['product_id'] );

        foreach( $product->get_category_ids() as $key => $cat_id ) {
            if( ! in_array( $cat_id, $product_cats ) )
                $product_cats[] = $cat_id;
        }
    }

    // If we have 3 distinct categories then apply a discount
    if( count( $product_cats ) >= 3 ) {
        // Add a 10% discount
        $discount = $cart->subtotal * 0.1;
        $cart->add_fee( 'You have 3 different product categories in your cart, a 10% discount has been added.', -$discount );
    }
}

答案 1 :(得分:1)

  

要使用优惠券处理此功能,您需要按产品或按产品的一个父类别分类,因为产品可以为其设置多个类别和子类别。

当购物车商品来自3个不同的商品类别时,此自定义功能会添加优惠券折扣。如果购物车商品已从购物车中移除,并且不再有3种不同的商品类别,优惠券代码将自动删除。

此外,您还需要在功能中设置优惠券代码名称和所有匹配产品类别ID的数组。

以下是代码:

add_action( 'woocommerce_before_calculate_totals', 'add_discount_for_3_diff_cats', 10, 1 );
function add_discount_for_3_diff_cats( $wc_cart ) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // HERE set your coupon code and your parent product categories in the array
    $coupon_code_to_apply = 'summer';
    // HERE define your product categories IDs in the array
    $your_categories = array( 11, 13, 14 ); // IDs

    // If coupon is already set
    if( $wc_cart->has_discount( $coupon_code_to_apply ) )
        $has_coupon = true;

    foreach( $wc_cart->get_cart() as $cart_item ) {
        $product_id = $cart_item['product_id'];
        $product = wc_get_product($product_id);
        foreach( $product->get_category_ids() as $category_id ) {
            if( has_term( $your_categories, 'product_cat', $product_id ) && in_array( $category_id, $your_categories ) ){
                // Set the categories in an array (avoiding duplicates)
                $categories[$category_id] = $category_id;
            }
        }
    }

    $count_cats = count($categories);
    $has_discount = $wc_cart->has_discount( $coupon_code_to_apply );

    if ( 3 <= $count_cats && ! $has_discount ) {
        $wc_cart->add_discount($coupon_code_to_apply);
    } elseif ( 3 > $count_cats && $has_discount ) {
        $wc_cart->remove_coupon($coupon_code_to_apply);
    }
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

测试并使用简单和可变的产品...