应该是bug ,应该怎样解决,“结算”页,总是自动刷新

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

描述如下:

当我没有购物,
直接进入“结算”页面 时,
http://www.jiangoujj.com/flow.php
点击”结算“按钮,进入下一页

http://www.jiangoujj.com/flow.php?step=checkout

页面总是总是自动刷新,不知是什么原因, 我应该怎样去掉 自动刷新功能。


当我有购物时就没有这种问题了。

谢谢各位了!!!

回答:
是吗?
你把你的show_message函数给我贴出来看看

修改了什么

找到模板下的 message.dwt顶部的
{if $auto_redirect}
<meta http-equiv="refresh" content="3;URL={$message.back_url}" />
{/if}
修改为
{if $auto_redirect}
<meta http-equiv="refresh" content="3;URL={if $message.back_url}$message.back_url{else}index.php{/if}" />
{/if}

找到模板下的 message.dwt顶部的
{if $auto_redirect}
<meta http-equiv="refresh" content="3;URL={$message.back_url}" />
{/if}
修改为
{if $auto_redirect}
<meta http-equiv="refresh" content="3;URL={if $message.back_url}$message.back_url{else}index.php{/if}" />
{/if}

太谢谢各位了