我现在已经开了6个小时了。 我想删除取消运费估算的运输表单,并在总计中收取固定费用。
我已经尝试了这个http://www.danneh.org/2010/08/adding-shipping-costs-to-the-cart-automatically-in-magento/ 但没有用,有人可以确认这是否有效或者可能给出更好的想法?
谢谢!
答案 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));
}
}
在保存送货方式步骤中。 希望这对你有用。