登录后重定向与Prestashop上的客户组不同

时间:2016-10-26 17:38:30

标签: php redirect login prestashop-1.6

我需要对我的网站进行一些更改,但我有一些问题。

我有2个角色组(用户和经销商)。当经销商登录时,我需要这样做"我的帐户页面"当用户登录重定向到预览页面时。

我尝试在authentication.top

上更改此行
{if is_array($customerGroups)}
{if $customerGroups[0]['id_group'] == 4}
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
else
<input type="hidden" class="hidden" name="back" value="{$smarty.server.HTTP_REFERER}" />

我有这个错误

Fatal error: Uncaught 
--> Smarty Compiler: Syntax error in template "/home/mysite/public_html/themes/default-bootstrap/authentication.tpl" on line 760 "" unclosed {if} tag 
<-- thrown in /home/mysite/public_html/tools/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 760

1 个答案:

答案 0 :(得分:1)

需要放置一个封闭的标签

{/if}