在WooCommerce中,我正在尝试根据购物车重量添加额外的运费。
1500g
费用为50美元。1500g
以上,我们通过1000g 例如:
我坚持计算:
function weight_add_cart_fee() {
$feeaddtocart = get_option('feeaddtocart');
$customweight = get_option('customweight');
global $woocommerce;
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
$cart_weight = WC()->cart->get_cart_contents_weight();
if ($cart_weight <= 500 ) {
$get_cart_total = $woocommerce->cart->get_cart_total();
$newtotal = $get_cart_total + 50;
WC()->cart->add_fee( __('Extra charge (weight): ', 'your_theme_slug'), $newtotal, false );
}
}
我怎样才能做到这一点?任何帮助表示赞赏。
答案 0 :(得分:0)
使用隐藏在 woocommerce_cart_calculate_fees
操作挂钩中的自定义函数可以非常轻松地完成...
已更新:
- 添加了以克为单位的购物车重量转换(默认情况下不是千克)
- 现在第一个1500克的费用是50美元(而不是500克)
- 现在1500克以上,以1000克的步数增加10美元。
add_action( 'woocommerce_cart_calculate_fees', 'shipping_weight_fee', 30, 1 );
function shipping_weight_fee( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
// Convert cart weight in grams
$cart_weight = $cart->get_cart_contents_weight() * 1000;
$fee = 50; // Starting Fee below 500g
// Above 500g we add $10 to the initial fee by steps of 1000g
if( $cart_weight > 1500 ){
for( $i = 1500; $i < $cart_weight; $i += 1000 ){
$fee += 10;
}
}
// Setting the calculated fee based on weight
$cart->add_fee( __( 'Weight shipping fee' ), $fee, false );
}
代码进入活动子主题(或活动主题)的function.php文件。
经过测试和工作。