【发布时间】:2019-08-20 23:16:55
【问题描述】:
在 WooCommerce 中,我正在尝试为特定产品类别的购物车商品设置最低数量。
基于“Minimum cart item quantity for a specific product category in WooCommerce”,这是我的代码尝试:
add_action( 'woocommerce_check_cart_items', 'wc_min_item_required_qty' );
function wc_min_item_required_qty() {
$category = 'games'; // The targeted product category
$min_item_qty = 4; // Minimum Qty required (for each item)
$display_error = false; // Initializing
// Loop through cart items
foreach(WC()->cart->get_cart() as $cart_item ) {
$item_quantity = $cart_item['quantity']; // Cart item quantity
$product_id = $cart_item['product_id']; // The product ID
// For cart items remaining to "Noten" producct category
if( has_term( $category, 'product_cat', $product_id ) && $item_quantity < $min_item_qty ) {
wc_clear_notices(); // Clear all other notices
// Add an error notice (and avoid checkout).
wc_add_notice( sprintf( 'You should at least pick', $min_item_qty ,'products for' ,$category, 'category' ), 'error' );
break; // Stop the loop
}
}
}
它不像我想要的那样工作,因为为特定产品类别中的第一个购物车项目设置了最小数量,但不是针对该特定产品类别中的所有项目全局设置。任何帮助表示赞赏。
【问题讨论】:
标签: php wordpress woocommerce cart custom-taxonomy