覆盖Woocommerce中特定运输类别的所有运输成本

时间:2018-06-19 19:56:55

标签: php wordpress woocommerce cart shipping

我有多个运输类别,价格在多个运输区域中设定。是否可以检测到购物车中的任何产品是否属于特定的运输类别,如果是,则将运输成本设置为0并显示一条消息?

我想将此机制用于需要特殊处理并通过货运运输的产品。因此,如果客户的订单中包含上述任何产品,则将在售后手动提供运输报价。

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

当在购物车中找到特定的定义运输方式时,以下代码会将所有运输成本设为零,并显示自定义通知。

第二个挂钩函数是可选的,它将在结帐页面上显示自定义通知。

您必须在“运送”选项(选项卡)下的“运送”设置中临时“ 启用调试模式”。

在下面的代码中,在每个函数中定义运输类别标签和自定义通知:

// Null shipping costs for a specific shipping class and display a message
add_filter('woocommerce_package_rates', 'shipping_class_null_shipping_costs', 10, 2);
function shipping_class_null_shipping_costs( $rates, $package ){
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return $rates;

    // HERE set your shipping class slug
    $shipping_class_slug = 'extra';

    $found = false;

    // Loop through cart items and checking for the specific defined shipping class
    foreach( $package['contents'] as $cart_item ) {
        if( $cart_item['data']->get_shipping_class() == $shipping_class_slug )
            $found = true;
    }

    // Set shipping costs to zero if shipping class is found
    if( $found ){
        foreach ( $rates as $rate_key => $rate ){
            $has_taxes = false;
            // Targetting "flat rate" and local pickup
            if( 'flat_rate' === $rate->method_id || 'local_pickup' === $rate->method_id  ){
                // Set the cost to zero
                $rates[$rate_key]->cost = 0;

                // Taxes rate cost (if enabled)
                foreach ($rates[$rate_key]->taxes as $key => $tax){
                    if( $rates[$rate_key]->taxes[$key] > 0 ){
                        $has_taxes = true;
                        // Set taxes cost to zero
                        $taxes[$key] = 0;
                    }
                }
                if( $has_taxes )
                    $rates[$rate_key]->taxes = $taxes;
            }
        }
        // Clear duplicated notices
        wc_clear_notices();
        // Add a custom notice to be displayed
        wc_add_notice( __('My custom shipping message here.', 'woocommerce'), 'notice' );
    }
    return $rates;
}


add_action( 'woocommerce_before_checkout_form', 'display_custom_shipping_message_in_checkout' );
function display_custom_shipping_message_in_checkout(){
    // HERE set your shipping class slug
    $shipping_class_slug = 'extra';

    $found = false;

    // Loop through cart items and checking for the specific defined shipping class
    foreach( WC()->cart->get_cart() as $cart_item ) {
        if( $cart_item['data']->get_shipping_class() == $shipping_class_slug )
            $found = true;
    }

    if( $found ){
        // Display a custom notice
        wc_print_notice( __('My custom shipping message here.', 'woocommerce'), 'notice' );
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。应该可以。

  

一旦测试一次,别忘了在运输设置中禁用“调试模式”

答案 1 :(得分:0)

设置免费送货的送货类别和送货方式,将该等级分配给您要为其提供免费送货的产品,然后确保将“免费送货方式”设置为默认送货方式。

祝你好运!