根据WooCommerce

时间:2017-08-13 09:37:04

标签: php wordpress woocommerce cart shipping

我试图在不使用插件的情况下指定2种不同的固定费率运费方式:

  • 如果购物车中只有一个供应商的产品,则统一运费需要为19英镑。
  • 如果购物车中有多个产品来自多个供应商,则统一运费需要为39英镑。

我尝试了各种插件,但他们专注于根据尺寸,重量,数量,位置,类别而非属性或条款的运费。

我有一个名为供应商的属性,包含8个条款。每个期限都是不同的供应商/供应商。

这是我想要实现的PHP逻辑类型:

if product attribute term quantity = 1

then flat rate = £19

else

if product attribute term quantity > 1

then flat rate = £39

如果购物车中有超过1个属性供应商条款,我该如何更改此“统一费率”送货方式费用?

1 个答案:

答案 0 :(得分:3)

此过程需要两个步骤:一些代码和一些设置......

1)代码 - 当购物车商品来自多家供应商时,您可以使用挂钩在woocommerce_package_rates过滤器挂钩中的自定义功能,定位“统一费率”送货方式:

add_filter( 'woocommerce_package_rates', 'custom_flat_rate_cost_calculation', 10, 2 );
function custom_flat_rate_cost_calculation( $rates, $package )
{

    // SET BELOW your attribute slug… always begins by "pa_"
    $attribute_slug = 'pa_vendor'; // (like for "Color" attribute the slug is "pa_color")


    // Iterating through each cart item to get the number of different vendors
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {

        // The attribute value for the current cart item
        $attr_value = $cart_item[ 'data' ]->get_attribute( $attribute_slug );

        // We store the values in an array: Each different value will be stored only one time
        $attribute_values[ $attr_value ] = $attr_value;
    }
    // We count the "different" attribute values stored
    $count = count($attribute_values);

    // Iterating through each shipping rate
    foreach($rates as $rate_key => $rate_values){
        $method_id = $rate_values->method_id;
        $rate_id = $rate_values->id;

        // Targeting "Flat Rate" shipping method
        if ( 'flat_rate' === $method_id ) {
            // For more than 1 vendor (count)
            if( $count > 1 ){
                // Get the original rate cost
                $orig_cost = $rates[$rate_id]->cost;
                // Calculate the new rate cost
                $new_cost = $orig_cost + 20; // 19 + 20 = 39
                // Set the new rate cost
                $rates[$rate_id]->cost = $new_cost;
                // Calculate the conversion rate (for below taxes)
                $conversion_rate = $new_cost / $orig_cost;
                // Taxes rate cost (if enabled)
                foreach ($rates[$rate_id]->taxes as $key => $tax){
                    if( $rates[$rate_id]->taxes[$key] > 0 ){
                        $new_tax_cost = number_format( $rates[$rate_id]->taxes[$key]*$conversion_rate, 2 );
                        $rates[$rate_id]->taxes[$key] = $new_tax_cost; // set the cost
                    }
                }
            }
        }
    }
    return $rates;
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

此代码使用woocommerce 3+版进行测试并正常工作

2)设置 - 上述代码保存在您的有效主题的function.php文件中后,您需要设置(对于所有发货区域)“统一费率”运费方法成本 19 (£19)(并保存)。

  

重要提示:要刷新送货方式缓存,您需要停用“固定费率”,然后保存启用返回< / strong>“统一费率”,然后保存

现在这应该符合预期。