我有一个使用WooCommerce插件的WordPress网站。如果买家选择本地取货作为送货方式,我希望买家将购物车总额减少5%。
我已经尝试过-5 * [数量] ,但似乎没有用。
我也尝试了-0.95 * [费用],但没有运气
答案 0 :(得分:2)
我正在使用WooCommerce 3,并通过在活动主题的function.php内编写一个函数来达到上述效果。
struct YDeleter { void operator()(Y* p) { special_delete(p); } };
std::unique_ptr<Y, YDeleter> p(new Y); // or presumaby some special factory
答案 1 :(得分:1)
费用API 的问题在于,它始终对负费用应用税款(折扣),而不在乎现有的优惠券折扣。
下面的代码将在运输方式“本地取货”本身中设置一个已定义的折扣百分比。
您需要使用简单的初始费用来设置参考运费,而不是您的公式。例如,它可以是10
,并将被代码折扣取代。
您可能必须在“运输选项”标签下的常规运输设置中启用“启用调试模式”,才能暂时禁用运输缓存。
代码(您将在其中设置折扣百分比):
add_filter('woocommerce_package_rates', 'local_pickup_percentage_discount', 12, 2);
function local_pickup_percentage_discount( $rates, $package ){
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return $rates;
// HERE define the discount percentage
$percentage = 5; // 5%
$subtotal = WC()->cart->get_subtotal();
// Loop through the shipping taxes array
foreach ( $rates as $rate_key => $rate ){
$has_taxes = false;
// Targetting "flat rate"
if( 'local_pickup' === $rate->method_id ){
// Add the Percentage to the label name (otional
$rates[$rate_key]->label .= ' ( - ' . $percentage . '% )';
// Get the initial cost
$initial_cost = $new_cost = $rates[$rate_key]->cost;
// Calculate new cost
$new_cost = -$subtotal * $percentage / 100;
// Set the new cost
$rates[$rate_key]->cost = $new_cost;
// Taxes rate cost (if enabled)
$taxes = [];
// Loop through the shipping taxes array (as they can be many)
foreach ($rates[$rate_key]->taxes as $key => $tax){
if( $rates[$rate_key]->taxes[$key] > 0 ){
// Get the initial tax cost
$initial_tax_cost = $new_tax_cost = $rates[$rate_key]->taxes[$key];
// 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
}
}
if( $has_taxes )
$rates[$rate_key]->taxes = $taxes;
}
}
return $rates;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
请不要忘记在出厂设置中禁用“启用调试模式”选项。