我正在尝试根据购物车中具有特定产品属性的产品数量来应用百分比折扣。
更确切地说,我的目标是在购买至少6个具有属性"flaske"的产品时应用15%的折扣。
我已经成功地在设置了变量属性的产品上实现了这一目标,但是我似乎无法针对单一/简单产品进行操作。
这是我迄今为止的代码(借用自WooCommerce的数量和价格条件)
// 根据购物车中的产品数量和属性进行折扣。 add_action( 'woocommerce_cart_calculate_fees','wc_cart_item_quantity_discount' ); function wc_cart_item_quantity_discount( $cart ) { if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; // 初始化变量。 $min_item_amount = 6; // 最小数量。 $discount = $items_count = $percent = $items_subtotal = 0; $taxonomy = 'pa_variant'; // 分类 $term_slugs = array('flaske'); // 术语 // 遍历购物车中的物品 foreach( $cart->get_cart() as $cart_item_key => $cart_item ) { // 遍历变体 foreach( $cart_item['variation'] as $attribute => $term_slug ) { // 只计算具有属性且数量超过6的物品。 if( $cart_item['data']->get_price() >= $min_item_amount && $attribute === 'attribute_'.$taxonomy && in_array( $term_slug, $term_slugs ) ) { $items_count += $cart_item['quantity']; $items_subtotal += $cart_item['line_subtotal']; } } } // 条件百分比。 if ($items_count >= 6 ) { $percent = 15; } // 折扣(应税)。 if( $items_count > 0 ) { // 计算 $discount -= ($items_subtotal / 100) * $percent; $cart->add_fee( __( "Mix & Match rabat - $percent%", "woocommerce" ), $discount, true); } }
我的当前代码对于可变产品(变体)非常有效,但似乎对于单一产品并没有影响,即使我给单一产品赋予了与可变产品相同的属性。
我怀疑这与foreach循环有关,即foreach( $cart_item['variation'] as $attribute => $term_slug )。
如何使其在一般情况下工作,以便也适用于具有相同属性“flaske”的单一/简单产品?
非常感谢您的帮助和建议。
P粉3233748782023-07-24 12:53:06
根据数量为每个商品提供Woocommerce百分比折扣
在Woocommerce中排除具有2个特定属性术语的变体,不可使用优惠券
add_action( 'woocommerce_cart_calculate_fees','wc_cart_item_quantity_discount' ); function wc_cart_item_quantity_discount( $cart ) { if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; // 初始化变量。 $min_item_amount = 6; // 最小数量 $discount = $items_count = $percent = $items_subtotal = 0; $taxonomy = 'pa_variant'; // 分类 $term_slugs = array('flaske'); // 遍历购物车中的物品 foreach( $cart->get_cart() as $cart_item_key => $cart_item ) { $product = $cart_item['data']; $price = $product->get_price(); // 产品变种 if( $product->is_type('variation') ) { // 遍历变种属性 foreach ($cart_item['variation'] as $attribute => $term_slug) { // 只计算具有属性且数量大于6的物品。 if ($price >= $min_item_amount && $attribute === 'attribute_' . $taxonomy && in_array($term_slug, $term_slugs)) { $items_count += $cart_item['quantity']; $items_subtotal += $cart_item['line_subtotal']; } } } // 简单产品 elseif ( $product->is_type('simple') ) { $attributes = $product->get_attributes(); if( ! empty($attributes) && array_key_exists($taxonomy, $attributes) ) { $terms = (array) $attributes[$taxonomy]->get_terms(); // array of WP_Term objects $slugs = array_map(function($term) { return $term->slug; }, $terms); // Extract only the term slugs if ($price >= $min_item_amount && count( array_intersect($slugs, $term_slugs) ) > 0 ) { $items_count += $cart_item['quantity']; $items_subtotal += $cart_item['line_subtotal']; } } } } // 条件百分比 if ($items_count >= 6) { $percent = 15; } // 折扣(应税)。 if ($items_count > 0) { // 计算 $discount -= ($items_subtotal / 100) * $percent; $cart->add_fee(__("Mix & Match rabat - $percent%", "woocommerce"), $discount, true); } }
这应该有用