基于Woocommerce中特定产品变化的购物车项目折扣

时间:2018-08-31 15:10:13

标签: php woocommerce cart coupon discount

我在自己的DIY销售商店中,有一种名为“可重复使用的湿纸”的产品,它具有不同的样式和包装。

  • 5可重复使用的湿成本€10
  • 10可重复使用的湿成本€18

由于它们有很多不同的样式,因此客户可能希望10个湿纸巾,但要采用两个5个不同的包装,以获得两个不同的样式。不幸的是,这会让他多花2欧元,我想避免这种情况。

我该如何检测这种行为,更确切地说,我应该在哪里钩住它?

我考虑过将其放入购物车预览中,如果我检测到这些包裹,也许会自动添加一个减价券,但是我不确定这是否是最有效的方式。

任何建议都会帮助我。

1 个答案:

答案 0 :(得分:3)

您的名为“可重复使用的湿纸巾”的产品似乎是可变产品,根据某些产品属性有多种变化。

因此,在您的情况下,折扣可以两种不同的方式应用

  

但是首先,您需要定义“可重复使用的湿”数量包装中涉及的相关产品属性 SLUG ,以及“包装数量”中相关的术语 NAME 值代码中为5“。

     

如果这种隐藏方式不正确,则代码将无法正常工作。

1)更改相关商品的价格 (最佳方法)

  

此处,当购物车中有2个或更多相关项目时,我们将折价单价设置为9 18 / 2 = 9

add_action( 'woocommerce_before_calculate_totals', 'conditionally_set_discounted_price', 30, 1 );
function conditionally_set_discounted_price( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    // HERE your product attribute slug for "Reusable wet" (without "pa_")
    $product_attr = 'reusable-wet';
    $product_attr = 'color';

    // HERE set the corresponding (value) term NAME for "5 Reusable wet"
    $term_slug = '5 reusable wet';
    $term_slug = 'Black';

    // HERE set the discounted price for each cart item with "5 Reusable wet" when they are 2 or more
    $discounted_price = 9; // (18 / 2 = 9)

    $five_rw_count = 0; // Initializing variable

    // 1st Loop: count cart items with "5 Reusable wet"
    foreach ( $cart->get_cart() as $cart_item ){
        if( $cart_item['data']->get_attribute( $product_attr ) == $term_slug ){
            $five_rw_count += $cart_item['quantity'];
        }
    }

    // Continue if there is at least 2 units of "5 Reusable wet"
    if( $five_rw_count < 2 ) return; // Exit

    // 2nd Loop: set the discounted price for cart items with "5 Reusable wet"
    foreach ( $cart->get_cart() as $cart_item ){
        if( $cart_item['data']->get_attribute( $product_attr ) == $term_slug ){
            $cart_item['data']->set_price($discounted_price); // Set the discounted price
        }
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并有效


2)优惠券方式 (出于许多逻辑原因,这不太方便)

  

在这里您必须设置优惠券代码。此优惠券设置应类似于:

     

enter image description here

     

您将在“产品”字段中设置所有相关产品变体的位置。

完成后,您将在以下代码中设置优惠券名称(小写):

add_action( 'woocommerce_before_calculate_totals', 'conditionally_auto_add_coupon', 30, 1 );
function conditionally_auto_add_coupon( $cart ) {
    if ( is_admin() && !defined('DOING_AJAX') ) return; // Exit

    // HERE your product attribute slug for "Reusable wet" (without "pa_")
    $product_attr = 'reusable-wet';

    // HERE set the corresponding (value) term NAME for "5 Reusable wet"
    $term_slug = '5 reusable wet';

    // HERE set the coupon code (in lowercase)
    $coupon_code = 'multiplefive';

    $five_rw_count = 0; // Initializing variable

    // 1st Loop: count cart items with "5 Reusable wet"
    foreach ( $cart->get_cart() as $cart_item ){
        if( $cart_item['data']->get_attribute( $product_attr ) == $term_slug ){
            $five_rw_count++; // Increasing count
        }
    }

    // Apply the coupon if there is at least 2 units of "5 Reusable wet"
    if ( ! $cart->has_discount( $coupon_code ) && $five_rw_count >= 2 ) {
        $cart->add_discount( $coupon_code );  
    } 
    // Remove the coupon if there is at less than 2 units of "5 Reusable wet"
    elseif  ( $cart->has_discount( $coupon_code ) && $five_rw_count < 2 ) {
        $cart->remove_coupon( $coupon_code );
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并有效


相关:Auto apply or remove a coupon in Woocommerce cart for a specific product id