基于数量和倍数的WooCommerce购物车中特定产品类别的折扣 [英] Discount for a specific product category in WooCommerce cart based on quantity and multiples

查看:18
本文介绍了基于数量和倍数的WooCommerce购物车中特定产品类别的折扣的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前的折扣基本上是

  • 如果购物车中有6种特定类别的产品-折扣总价10美元

这段代码运行良好。我的问题是,这不起作用

  • 如果有7个产品,则第7个产品来自不同的类别。

我的目标是,无论购物车中有多少产品,只要&Quot;类别A&Quot;中有6种产品,都可以提供折扣。

只要折扣类别中有6个产品,或者有1个数量为6的产品,以下代码就有效。当我从另一个类别添加产品时,代码就会失效。请随意将其拆开。

add_action( 'woocommerce_before_calculate_totals', 'this_item_free' );

function this_item_free() {

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    $valid_product_category_id = array('soup-mix');
    $has_category = false;

    $count = WC()->cart->get_cart_contents_count();

    foreach ( WC()->cart->get_cart() as $product ) {
        $quantity = $product['quantity'];
        $price = $product['data']->get_price();
    }

    if ( has_term( $valid_product_category_id, 'product_cat', $product['product_id'],
            $product['quantity'] ) ) {
        $has_category = true;
        $cart_total = floatval( preg_replace( '#[^d.]#', '', WC()->cart->get_cart_total() ) );

        if($count == 6 && $has_category = true){
            add_action( 'woocommerce_cart_calculate_fees', 'discount_based_on_total', 25, 1 );
            function discount_based_on_total( $cart ) {

                $total = $cart->cart_contents_total;
                $discount = 9.95;

                $cart->add_fee( __('discount', 'woocommerce'), -$discount );
                wc_add_notice( apply_filters( 'discount_applied', 'You just got a free soup!') );

            }
        }
    }
}

推荐答案

您的代码包含一些不必要的步骤,只需woocommerce_cart_calculate_fees操作钩子即可实现您想要的效果

我的答案包括:

无论购物车里有多少个产品,只要有6个产品,或者有1个产品数量为6个等,都可以打折。在类别A内。

function action_woocommerce_cart_calculate_fees( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    /* SETTINGS */

    // Specific categories
    $specific_categories = array( 'Categorie-A' );

    // Discount
    $discount = 10;
    
    // Min quantity
    $minimun_quantity = 6;

    /* END SETTINGS */
    
    // Counter
    $current_quantity = 0;

    // Loop though each cart item
    foreach ( $cart->get_cart() as $cart_item ) {
        // Get product id
        $product_id = $cart_item['product_id'];

        // Has certain category     
        if ( has_term( $specific_categories, 'product_cat', $product_id ) ) {
            // Quantity
            $product_quantity = $cart_item['quantity'];

            // Add to total
            $current_quantity += $product_quantity;
        }
    }

    // Greater than or equal to
    if ( $current_quantity >= $minimun_quantity ) {          
        // Add fee
        $cart->add_fee( __( 'Discount_applied', 'woocommerce' ), -$discount, false );      
    }
}
add_action( 'woocommerce_cart_calculate_fees', 'action_woocommerce_cart_calculate_fees', 10, 1 );

每6个产品(6=10美元、12=20美元、18=30美元等)享受折扣

替换

// Greater than or equal to
if ( $current_quantity >= $minimun_quantity ) {          
    // Add fee
    $cart->add_fee( __( 'Discount_applied', 'woocommerce' ), -$discount, false );      
}

// Greater than or equal to
if ( $current_quantity >= $minimun_quantity ) {
    // Modulo
    $mod = $current_quantity % $minimun_quantity;
    
    // Times it fit
    $times = ( $current_quantity - $mod ) / $minimun_quantity;

    // Discount * times
    $discount = $discount * $times;
    
    // Add fee
    $cart->add_fee( __( 'Discount_applied', 'woocommerce' ), -$discount, false );      
}

这篇关于基于数量和倍数的WooCommerce购物车中特定产品类别的折扣的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆