1

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

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

谢谢!

4

1 回答 1

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));
    }

}

在您保存运输方式的步骤中。希望这对你有用。

于 2013-05-08T04:56:11.250 回答