0
我已經設置了特定產品類別在magento的免費送貨通過引用這篇博文http://www.regularjen.com/archives/2010/06/11/free-shipping-on-a-single-item-in-magento/。它的工作正常。現在問題是,Magento在shiiping reuslt展示免費送貨&其他運費。Magento:取消其他運費的結果,當顯示免費送貨
我該如何刪除這些結果?
我已經設置了特定產品類別在magento的免費送貨通過引用這篇博文http://www.regularjen.com/archives/2010/06/11/free-shipping-on-a-single-item-in-magento/。它的工作正常。現在問題是,Magento在shiiping reuslt展示免費送貨&其他運費。Magento:取消其他運費的結果,當顯示免費送貨
我該如何刪除這些結果?
一種解決方案可能是覆蓋getShippingRates()方法,你可以在Mage_Checkout_Block_Onepage_Shipping_Method_Available類找到。
public function getShippingRates()
{
parent::getShippingRates();
if (isset($this->_rates['freeshipping'])) {
$this->_rates = array('freeshipping' => $this->_rates['freeshipping']);
}
return $this->_rates;
}