【问题标题】:Magento: Remove other shipping result when free shipping shownMagento:显示免费送货时删除其他送货结果
【发布时间】:2014-01-06 13:13:42
【问题描述】:

我已经通过参考这篇博文 http://www.regularjen.com/archives/2010/06/11/free-shipping-on-a-single-item-in-magento/ 在 magento 中为特定产品类别设置了免费送货。它工作正常。现在的问题是,Magento 在 shiiping reuslt 中显示免费送货和其他运费。

我怎样才能删除那些结果?

【问题讨论】:

    标签: php magento magento-1.8


    【解决方案1】:

    一种解决方案可能是覆盖您可以在 Mage_Checkout_Block_Onepage_Shipping_Method_Available 类中找到的 getShippingRates() 方法。

       public function getShippingRates()
        {
            parent::getShippingRates();
    
            if (isset($this->_rates['freeshipping'])) {
                $this->_rates = array('freeshipping' => $this->_rates['freeshipping']);
            }
    
            return $this->_rates;
        }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-11-11
      • 2021-05-29
      • 1970-01-01
      • 2014-03-03
      • 1970-01-01
      相关资源
      最近更新 更多