基于商品数量计数的WooCommerce购物车中的折扣 [英] Discount based on item quantity count for a category in WooCommerce cart

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

问题描述

我有一类产品的价格都在15美元以下.当用户购买10点与10点之间的价格时,此类别的20种产品应获得10美元的折扣价.当用户购买20+后,价格再次变为$ 5.无法为用户分配自定义角色(例如批发商).我根据另一个问题的LoicTheAztec代码松散地创建了代码,并添加了自己的修改和代码.看起来应该可以使用.我没有收到任何错误,但无法正常工作.

I have a category of products that are all priced at $15. When the user buys between 10 & 20 products from this category they should receive a discounted price of $10. When the user buys 20+ the price changes again to $5. The user cannot have a custom role assigned to them (like wholesaler). I created code loosely based on LoicTheAztec code from another question and added my own modifications and code. It looks like it should work. I receive no errors but it does not work.

add_action('woocommerce_before_cart', 'check_product_category_in_cart');

function check_product_category_in_cart() {
    // HERE set your product categories in the array (can be IDs, slugs or names)
    $categories = array('surfacing-adhesives');
    $found      = false; // Initializing

    $count = 0;

    // Loop through cart items      
    foreach ( WC()->cart->get_cart() as $cart_item ) {
        // If product categories is found
        if ( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ) {
            $count++;
        }
    }

    if (!current_user_can('wholesaler')) {
        // Discounts
        if ($count > 10 && $count < 20) {
            // Drop the per item price
            $price = 10;
        } else if ($count > 20) {
            // Drop the per item price
            $price = 5;
        } else {
            // Did not qualify for volume discount
        }
    }
}

推荐答案

您使用的钩子不正确,并且缺少一些东西.请尝试以下操作:

You are not using the correct hook and there are some missing things. Try the following:

add_action( 'woocommerce_before_calculate_totals', 'discounted_cart_item_price', 20, 1 );
function discounted_cart_item_price( $cart ){
    // Not for wholesaler user role
    if ( ( is_admin() && ! defined( 'DOING_AJAX' ) ) || current_user_can('wholesaler') )
        return;

    // Required since Woocommerce version 3.2 for cart items properties changes
    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    // HERE set your product categories in the array (can be IDs, slugs or names)
    $categories = array('surfacing-adhesives');
    $categories = array('t-shirts');

    // Initializing
    $found = false;
    $count = 0;

    // 1st Loop: get category items count  
    foreach ( WC()->cart->get_cart() as $cart_item ) {
        // If product categories is found
        if ( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ) {
            $count += $cart_item['quantity'];
        }
    }

    // Applying discount
    if ( $count >= 10 ) {
        // Discount calculation (Drop the per item qty price)
        $price = $count >= 20 ? 5 : 10;

        // 2nd Loop: Set discounted price  
        foreach ( WC()->cart->get_cart() as $cart_item ) {
            // If product categories is found
            if ( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ) {
                $cart_item['data']->set_price( $price );
            }
        }
    }
}

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

Code goes in functions.php file of your active child theme (or active theme). Tested and works.

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

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