我有一类产品的价格都是 15 美元。当用户从该类别购买 10 到 20 件产品时,他们应该获得 10 美元的折扣价。当用户购买 20+ 时,价格再次变为 5 美元。不能为用户分配自定义角色(如批发商)。我根据另一个问题的 LoicTheAztec 代码松散地创建了代码,并添加了我自己的修改和代码。看起来应该可以。我没有收到任何错误,但它不起作用。
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
}
}
}
杨__羊羊