如果结帐页面中有多种送货方式,如何设置默认送货方式。
答案 0 :(得分:1)
覆盖Magento 2文件Magento_Checkout / js / model / checkout-data-resolver.js
在resolveShippingRates方法中添加此条件。
if (ratesData.length >= 1) {
//set shipping rate if we have only one available shipping rate
if(!selectedShippingRate) {
selectShippingMethodAction(ratesData[0]);
}
}