1
在我的Magento網站上,在PayPal Express的Review頁面上,用戶需要選擇一種送貨方式。Magento,如何更改PayPal/Express/Review頁面
我的網站只有一種運送方式是「免運費」。
我該如何選擇「免運費」作爲預設?
在我的Magento網站上,在PayPal Express的Review頁面上,用戶需要選擇一種送貨方式。Magento,如何更改PayPal/Express/Review頁面
我的網站只有一種運送方式是「免運費」。
我該如何選擇「免運費」作爲預設?
下面的代碼是在下面參考 http://www.magentocommerce.com/boards/viewthread/9223/#t33602
工作的偉大
<?php foreach ($_rates as $_rate): ?>
// add checking for free shipping method and setting it as default
<?php if ($_rate->getCode()=='freeshipping_freeshipping' && !$this->getAddress()->getShippingMethod()) {
$this->getAddress()->setShippingMethod($_rate->getCode());
}
您可以詳細信息,或者您可以參考: How to auto fill shipping method Magento for onepagechekout