【问题标题】:Magento, how to change PayPal/Express/Review pageMagento,如何更改 PayPal/Express/Review 页面
【发布时间】:2013-05-27 13:20:48
【问题描述】:

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

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

我怎样才能将“免费送货”设为默认?

【问题讨论】:

    标签: magento


    【解决方案1】:

    下面的代码很好用

    <?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

    【讨论】:

      猜你喜欢
      • 2015-08-07
      • 2011-11-28
      • 2015-07-08
      • 2012-07-28
      • 2017-02-08
      • 2015-07-18
      • 1970-01-01
      • 2011-01-28
      • 2011-10-08
      相关资源
      最近更新 更多