1

在我的 Magento 网站中,在 PayPal Express 的 Review 页面上,用户需要选择一种运输方式。

我的网站只有一种送货方式,即“免费送货”。

如何将“免费送货”设置为默认选项?

4

1 回答 1

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

或者您可以参考: 如何为 onepagechekout 自动填写运输方式 Magento

于 2013-05-31T19:34:19.590 回答