我的购物车中有3种送货方式,一旦您的客户输入免费送货优惠券,该送货方式应该会变成零价格。
我知道如何在functions.php中添加一个过滤器来检测优惠券,但有人知道一个片段,用于将购物车中的运送方式(单选按钮)设置为ZERO以获取此订单吗?
我的送货方式是UPS,FedEx等公司......
我已启用免费送货选项,以便可以使用优惠券进行管理。
根据我的产品发货类别和订单总重量计算客户交货方式的选择列表。
运输类不是按照产品计算的,而是使用TABLE RATE PLUGIN来计算重量。
非常感谢
答案 0 :(得分:3)
首先必须启用免费送货方式选项"有效的免费送货优惠券" ...
然后,您需要设置所需的优惠券代码,选项为"允许免费送货"启用。
以下代码会将有效的优惠券代码(带选项"允许免费送货"已启用)的所有送货方式费用设置为零。
更新:隐藏"免费送货"方法并使用"
附加运费标签(free)
"
add_filter( 'woocommerce_package_rates', 'coupon_free_shipping_customization', 20, 2 );
function coupon_free_shipping_customization( $rates, $package ) {
$has_free_shipping = false;
$applied_coupons = WC()->cart->get_applied_coupons();
foreach( $applied_coupons as $coupon_code ){
$coupon = new WC_Coupon($coupon_code);
if($coupon->get_free_shipping()){
$has_free_shipping = true;
break;
}
}
foreach( $rates as $rate_key => $rate ){
if( $has_free_shipping ){
// For "free shipping" method (enabled), remove it
if( $rate->method_id == 'free_shipping'){
unset($rates[$rate_key]);
}
// For other shipping methods
else {
// Append rate label titles (free)
$rates[$rate_key]->label .= ' ' . __('(free)', 'woocommerce');
// Set rate cost
$rates[$rate_key]->cost = 0;
// Set taxes rate cost (if enabled)
$taxes = array();
foreach ($rates[$rate_key]->taxes as $key => $tax){
if( $rates[$rate_key]->taxes[$key] > 0 )
$taxes[$key] = 0;
}
$rates[$rate_key]->taxes = $taxes;
}
}
}
return $rates;
}
代码进入活动子主题(或活动主题)的function.php文件。
经过测试和工作。它也应该适合你。
有时,您可能需要来刷新送货方式:
1)首先清空车 2)转到运输区域设置,然后禁用/保存并重新启用/保存相关的运输方式。
答案 1 :(得分:-1)
如果你想达到同样的效果,但只要有免费的送货方式(不仅应用优惠券,而且购物车总数超过一定价格),你可以使用:
add_filter( 'woocommerce_package_rates', 'wc_apply_free_shipping_to_all_methods', 10, 2 );
function wc_apply_free_shipping_to_all_methods( $rates, $package ) {
if( isset( $rates['free_shipping:11'] ) ) {
unset( $rates['free_shipping:11'] );
foreach( $rates as $rate_key => $rate ) {
// Append rate label titles (free)
$rates[$rate_key]->label .= ' ' . __('(free)', 'woocommerce');
// Set rate cost
$rates[$rate_key]->cost = 0;
// Set taxes rate cost (if enabled)
$taxes = array();
foreach ($rates[$rate_key]->taxes as $key => $tax){
if( $rates[$rate_key]->taxes[$key] > 0 )
$taxes[$key] = 0;
}
$rates[$rate_key]->taxes = $taxes;
}
}
return $rates;
}
请注意,free_shipping
之后有一个:11
。在WooCommerce 2.6之前,运输方法“免费送货”的详细信息存储在数组元素$rates['free_shipping']
下。但是,现在它存储为$rates['free_shipping:shipping_zone_instance_id']
,其中shipping_zone_instance_id
是送货方式的送货区实例ID。您可以通过检查管理面板中的“免费送货”,或在新标签页中打开并查看网址http://prntscr.com/jd2zjy来检查送货方式的实例ID。