Magento 1.8结账问题Checkout Problem with Magento 1.8

刚升级到Magento1.8,却不料结账页出现问题,结账按钮不工作,无法前进,此问题的出现,与你使用的模板没有必然联系,因为通过几次更换模板,此问题都没有消除,经过研究,终于发现问题出在checkout phtml文件。

下面是解决办法:

找到“/app/design/frontend/base/default/template/checkout/onepage/payment.phtm”,36行,修改:

[php]
<fieldset>
<?php echo $this->getChildHtml(‘methods’) ?>
</fieldset>
[/php]

为:

[php]
<fieldset id="checkout-payment-method-load">
<?php echo $this->getChildHtml(‘methods’) ?>
</fieldset>
[/php]

需要注意的是,Magento1.8升级后,核心文件有较大改变,所以你可能需要将checkout.xml文件从base文件夹拷贝到你的新模板文件夹下面。

标签

发表评论

评论已关闭。

评论列表(1)


Warning: error_log(/www/wwwroot/www.ctrol.cn/wp-content/plugins/spider-analyser/#log/log-0211.txt): failed to open stream: No such file or directory in /www/wwwroot/www.ctrol.cn/wp-content/plugins/spider-analyser/spider.class.php on line 2900