我想在woocommerce购物车中,客户将获得20%的折扣,但我想将折扣金额限制为500美元。
这可能在WooCommerce中吗?
感谢。
答案 0 :(得分:4)
使用 woocommerce_cart_calculate_fees
挂钩和WC_cart方法add_fee()
可以轻松完成此操作。然后,如果您使用负费用,则会变为折扣。
在此功能中,折扣是根据不含税的购物车小计计算的(您可以轻松将其更改为包含税的总额)。
以下是代码:
add_action( 'woocommerce_cart_calculate_fees', 'custom_limited_discount', 10, 1 );
function custom_limited_discount($cart_object) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
// Here 20 % of discount
$discount_percent = 0.2;
// Here the max discounted amount
$max_discount = 500;
// Here are some different cart totals
$cart_subtotal_excl_tax = WC()->cart->subtotal_ex_tax;
$cart_subtotal = WC()->cart->subtotal;
$cart_total = WC()->cart->total;
$discount = 0;
// CALCULATION with subtotal excluding taxes
$calculation = $cart_subtotal_excl_tax * $discount_percent;
// Limiting the discount to $max_discount
if ( $calculation > $max_discount ) {
$discount -= $max_discount;
} else {
$discount -= $calculation;
}
$discount_text_output = __( 'Discount (20 %)', 'woocommerce' );
// Adding the discount
$cart_object->add_fee( $discount_text_output, $discount, false );
// Note: Last argument in add_fee() method is related to applying the tax or not to the discount (true or false)
}
此代码经过测试且功能齐全。
代码进入活动子主题(或主题)的function.php文件。或者也可以在任何插件php文件中。
注意:
add_fee()
方法中的最后一个参数与应用税或不对折扣(真或假)相关。