I’ve updated one of my stores to the new version 1.8.0 of Magento and all was great until I try the checkout. On the customer onepage checkout I just stuck on step Shipping Method, I could not get the payment information working.
After look in everywhere I found out it was just an update on the layout. I went to /app/design/frontend/base/default/template/checkout/onepage/payment.phtml and changed that around the line 36:
<fieldset>
<?php echo $this->getChildHtml('methods') ?>
</fieldset>
adding the id “checkout-payment-method-load” to fieldset
<fieldset id="checkout-payment-method-load">
<?php echo $this->getChildHtml('methods') ?>
</fieldset>
That’s it, now your code should work. Keep in mind, you should not do it in the base package, instead do it in your own.
Happy Coding!
参考:http://magento.stackexchange.com/a/9150
原文/转自:Magento 购物车不能加载付款栏 Magento 1.8 and 1.9 Payment not loading on Checkout
文章介绍了在使用Magento 1.8.0版本时,遇到购物车付款栏无法加载的问题,并提供了一个简单的解决方法。通过修改模板文件中的布局代码,将付款栏的加载过程单独标记,成功解决了问题。
799

被折叠的 条评论
为什么被折叠?



