在我的Magento网站上,在PayPal Express的Review页面上,用户需要选择送货方式。
我的网站只有一种运费方式,即“免费送货”。
如何选择“免费送货”作为默认设置?
答案 0 :(得分:0)
下面的代码工作得很好
<?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());
}
您可以详细了解以下参考资料 http://www.magentocommerce.com/boards/viewthread/9223/#t33602
或者您可以参考: How to auto fill shipping method Magento for onepagechekout