Magento - 仅在购物车页面的总计中显示运费,删除运输表格

时间:2013-05-07 17:11:46

标签: php magento plugins mage

我现在已经开了6个小时了。 我想删除取消运费估算的运输表单,并在总计中收取固定费用。

我已经尝试了这个http://www.danneh.org/2010/08/adding-shipping-costs-to-the-cart-automatically-in-magento/ 但没有用,有人可以确认这是否有效或者可能给出更好的想法?

谢谢!

1 个答案:

答案 0 :(得分:0)

只需按照此步骤设置送货方式即可 在这种情况下的saveBillingAction()saveShippingAction()

if (!isset($result['error']))

调用$this->saveShippingMethodAction();函数和

把这段代码。

public function saveShippingMethodAction()
{
    $this->_expireAjax();
    if ($this->getRequest()->isPost()) {
        $data = $this->getRequest()->getPost('shipping_method', 'flatrate_flatrate');
        $result = $this->getOnepage()->saveShippingMethod($data);
           $this->getResponse()->setBody(Zend_Json::encode($result));
    }

}

在保存送货方式步骤中。 希望这对你有用。