不要对WooCommerce中的缺货产品应用优惠券折扣

时间:2020-08-15 08:42:12

标签: php wordpress woocommerce product coupon

我试图仅对有现货的产品应用优惠券。

因此,如果我的购物车中有5件商品,而库存中有4件商品,那么只有4件会享受折扣优惠,因此,缺货的商品不会。

实际上,我正在尝试更改“ get_items_to_apply_coupon”文件中的默认“ class-wc-discounts.php”功能。

我尝试计算每个小商品内当前产品的库存量,然后将$item_to_apply->quantity更改为库存产品和购物车产品之间的差异。

但是如果我在$->数量中输入“ 200”,折扣也不会改变

protected function get_items_to_apply_coupon( $coupon ) {
    $items_to_apply = array();

    foreach ( $this->get_items_to_validate() as $item ) {
        $item_to_apply = clone $item; // Clone the item so changes to this item do not affect the originals.

        if ( 0 === $this->get_discounted_price_in_cents( $item_to_apply ) || 0 >= $item_to_apply->quantity ) {
            continue;
        }

        if ( ! $coupon->is_valid_for_product( $item_to_apply->product, $item_to_apply->object ) && ! $coupon->is_valid_for_cart() ) {
            continue;
        }
        
            $items_to_apply[] = $item_to_apply;
        

    }



    return $items_to_apply;
}

1 个答案:

答案 0 :(得分:1)

class-wc-discounts.php包含

在此函数中,我们找到了woocommerce_coupon_get_discount_amount过滤器挂钩。

因此,当产品缺货时,您可以返回0作为折扣

function filter_woocommerce_coupon_get_discount_amount( $discount, $price_to_discount , $cart_item, $single, $coupon ) {    
    // On backorder
    if ( $cart_item['data']->is_on_backorder() ) {
        $discount = 0;
    }

    return $discount;
}
add_filter( 'woocommerce_coupon_get_discount_amount', 'filter_woocommerce_coupon_get_discount_amount', 10, 5 );