在 WooCommerce 中为特定类别的最便宜商品打折

Discounting the cheapest item for a specific category in WooCommerce

我想根据产品类别对 Woocommerce 中最便宜的购物车商品打折。基于 "" 完美运行的答案代码。

但是如何让它只适用于特定的产品类别。

我们的想法是在购物车中添加 2 件产品,并为特定产品类别的最便宜的商品提供折扣。

已更新 - 限制为定义的产品类别中的 2 件商品。

以下将对特定产品类别(将在代码中定义)执行相同操作:

add_action('woocommerce_cart_calculate_fees', 'discount_on_cheapest_cart_item', 20, 1 );
function discount_on_cheapest_cart_item( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // Settings
    $categories = ['tshirts']; // Your product categories (coma separated)
    $percentage = 10; // 10 % discount

    // Only for 2 items or more
    if ( $cart->get_cart_contents_count() < 2 ) return;

    // Initialising
    $discount = 0;
    $item_prices = array();

    // Loop though each cart items and set prices in an array
    foreach ( $cart->get_cart() as $cart_item ) {
        if( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ) {
            $product_prices_excl_tax[] = wc_get_price_excluding_tax( $cart_item['data'] );
        }
    }

    // We set the fee for 2 items of the defined product category
    if( count($product_prices_excl_tax) == 2 ) {

        sort($product_prices_excl_tax);

        $discount = reset($product_prices_excl_tax) * $percentage / 100;

        $cart->add_fee( sprintf( __("Discount on cheapest %s"), '('.$percentage.'%)' ), -$discount );
    }
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。它应该有效。