在我的 magento 网站中,我的产品价格为 0.00。
所以我在结帐时隐藏了付款信息。
那就是我改变了代码app/code/core/Mage/Checkout/Block/Onepage/Abstract.php
在这个函数中 _getStepCodes()
我将代码替换为以下内容:
$sub = Mage::getSingleton('checkout/cart')->getQuote()->getData();
$subtotal = $sub['base_subtotal'];
if($subtotal == 0){
return array('login', 'billing', 'shipping', 'shipping_method', 'review');
}else{
return array('login', 'billing', 'shipping', 'shipping_method', 'payment', 'review');
}
所以Payment Information
不显示。
那么我在这里要做的是:
如果产品总价为零,则Order Review
点击进去后进入Shipping methods
。
如果产品价格不为零Payment Information
,则正常。
所以我把代码写在app/code/core/Mage/Checkout/controllers/OnepageController.php
.
在此页面中,我更改了功能,并且更新了:
public function saveShippingMethodAction()
{
if ($this->_expireAjax()) {
return;
}
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost('shipping_method', '');
$result = $this->getOnepage()->saveShippingMethod($data);
/*
$result will have erro data if shipping method is empty
*/
if(!$result) {
Mage::dispatchEvent('checkout_controller_onepage_save_shipping_method',
array('request'=>$this->getRequest(),
'quote'=>$this->getOnepage()->getQuote()));
$this->getOnepage()->getQuote()->collectTotals();
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
$sub = Mage::getSingleton('checkout/cart')->getQuote()->getData();
$subtotal = $sub['base_subtotal'];
if($subtotal == 0){
$this->loadLayout('checkout_onepage_review');
$result['goto_section'] = 'review';
$result['update_section'] = array(
'name' => 'review',
'html' => $this->_getReviewHtml()
);
}else{
$result['goto_section'] = 'payment';
$result['update_section'] = array(
'name' => 'payment-method',
'html' => $this->_getPaymentMethodsHtml()
);
}
$this->getOnepage()->getQuote()->collectTotals()->save();
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
}
}
}
当产品价格大于零时,它工作正常。
但如果产品价格为零,它就不会走一步Order Review
。
但是在 fre bug 中json
有Order Review
.
这有什么问题?
它加载了in 的json
代码,但未加载到站点中。Order Review
fire bug
我该如何解决这个问题?