我正在经营一家 woocommerce 商店并使用统一运费$15
。我已经$1.25
为每个附加项目编写了一个公式。
13.50 + ( 1.25 * [数量])
啜饮“统一费率设置 |$1.25
额外的每个项目:
但我想$1.25
为每 3 件商品添加此费用。我的意思是3、6、9、12等等……
谁能告诉我该怎么做?任何帮助表示赞赏。
我正在经营一家 woocommerce 商店并使用统一运费$15
。我已经$1.25
为每个附加项目编写了一个公式。
13.50 + ( 1.25 * [数量])
啜饮“统一费率设置 |$1.25
额外的每个项目:
但我想$1.25
为每 3 件商品添加此费用。我的意思是3、6、9、12等等……
谁能告诉我该怎么做?任何帮助表示赞赏。
更新 (2021 年)
以下代码将为每 3 件(3, 6, 9 ...)的统一运费方式添加额外费用。
您将需要使用简单的初始成本而不是公式来更改您的运费。
您可能必须在“运输选项”选项卡下的常规运输设置中“启用调试模式”,以禁用临时运输缓存。
代码(您将在其中设置额外的运费):
add_filter('woocommerce_package_rates', 'shipping_additional_cost_each_three_items', 10, 2);
function shipping_additional_cost_each_three_items( $rates, $package ){
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return $rates;
// HERE set your additional shipping cost
$additional_cost = 1.25;
$items_count = 0; // Initializing
$each_items = 3; // Number of items (for additional cost)
// Loop through cart items for the current shipping package
foreach( $package['contents'] as $cart_item ) {
$items_count = += $cart_item['quantity']; // Count cart items for current shipping package
}
if ( $items_count >= $each_items ) {
// Loop through the shipping taxes array
foreach ( $rates as $rate_key => $rate ){
// Targetting "flat rate"
if( 'flat_rate' === $rate->method_id ){
$initial_cost = $new_cost = $rate->cost;
$has_taxes = false; // Initializing
$taxes = array(); // Initializing
// Adding to cost the additional cost each 3 items (3, 6, 9 …)
for($i = 0; $i <= $items_count; $i+ = $each_items){
$new_cost += $additional_cost;
}
$rates[$rate_key]->cost = $new_cost; // Set the new cost
// Taxes rate cost (if any) - Loop through taxes array (as they can be many)
foreach ($rate->taxes as $key => $tax){
if( $tax > 0 ){
// Get the initial tax cost
$initial_tax_cost = $new_tax_cost = $tax;
// Get the tax rate conversion
$tax_rate = $initial_tax_cost / $initial_cost;
// Set the new tax cost
$taxes[$key] = $new_cost * $tax_rate;
$has_taxes = true; // Enabling tax changes
}
}
// set array of shipping tax cost
if( $has_taxes ) {
$rates[$rate_key]->taxes = $taxes;
}
}
}
}
return $rates;
}
代码位于您的活动子主题(或活动主题)的 function.php 文件中。测试和工作。
不要忘记在发货设置中禁用“启用调试模式”选项。
根据您的第二条评论回答:
您将替换此块:
// Adding to cost the additional cost each 3 items (3, 6, 9 …)
for($i = 0; $i <= $items_count; $i += $each_items){
$new_cost += $additional_cost;
}
通过以下方式:
// Adding to cost an additional fixed cost for the 2nd item
if($items_count >= 2){
$new_cost += 6.21;
}
// Adding to cost the additional cost each 3 items (3, 6, 9 …)
for($i = 0; $i <= $items_count; $i += $each_items){
$new_cost += $additional_cost;
}
<?php
$number = 13;
$all_number = 1;
for($i=1;$i<=13;$i++){
if ($i % 3 == 0){
$all_number = $all_number + 1;
}
}
$price_new_data = $old_price*$all_number;
$price = 13.50+($price_new_data*$product_quenty);
?>