Magento 访客结帐不会进入送货信息
由于某些奇怪的原因,当人们尝试使用访客结帐时,它只允许他们输入帐单信息,然后当它应该发送时......它只是循环回到第一个结帐页面......这个过程不断重复,
任何人都知道在哪里这可能是从哪里来的?
For some odd reason when people try to use guest checkout it just allows them to enter billing information then when it supposed to go to shipping... it just loops back to the first checkout page... the the process keeps repeating
anyone know where this may be coming from?
the site is a2iwheels.com/checkout/onepage/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 Magento 安装不正确。根据此报告,您似乎缺少 PHP MCrypt 扩展:
http ://www.a2iwheels.com/report/?id=500049770619&s=default
以下是调试 Magento 问题时的一些提示:
第一:
通过取消注释/添加以下行到 Magento 索引来启用调试/开发模式.php 文件:
第二:
设置 Magento 异常日志:
,在 Magento 开始写入日志文件之前,您需要手动创建日志文件。
第三步
安装 FireBug 并用它来捕获 AJAX 错误 - 单页结帐本质上是一个复杂的 AJAX 页面。
Your Magento install is incorrect. According to this report it looks like you're missing the PHP MCrypt extension:
http://www.a2iwheels.com/report/?id=500049770619&s=default
Here's a few tips when debugging Magento problems:
First:
Enable debug/developer mode by uncommenting/adding the following lines to the Magento index.php file:
Second:
Setup the Magento exception log:
Note that you'll need to manually create the log files before Magento begins writing to them.
Third
Install FireBug and use it to catch AJAX errors - the single page checkout is essentially one complicated AJAX page.
转到
/app/design/frontend/base/default/template/checkout/onepage/ payment.phtml
并将以下代码(第 36 行)更改
为此
Go to
/app/design/frontend/base/default/template/checkout/onepage/payment.phtml
and change the following code (line 36)
to this