我要查找并访问我的页面http://myprestashopurl.com/en/login

时间:2019-07-01 16:21:33

标签: prestashop-1.7

我要访问并修改用户/登录页面,我已经创建了一个注册页面,并且希望将其与登录页面中的prestashop链接(当用户想要创建一个帐户时,他应该重新获得我的链接) ),但我找不到要修改的文件夹

期望重定向到我要在其中创建帐户的链接

1 个答案:

答案 0 :(得分:1)

更改链接的href属性,以在templates/customer/authentication.tpl中创建一个帐户

{block name='page_footer'}
  <div class="no-account">
    <a href="{$urls.pages.register}" data-link-action="display-register-form">
        {l s='No account? Create one here' d='Shop.Theme.Customeraccount'}
    </a>
  </div>
{/block}

成为

{block name='page_footer'}
  <div class="no-account">
    <a href="http://myprestashopurl.com/en/login" data-link-action="display-register-form">
        {l s='No account? Create one here' d='Shop.Theme.Customeraccount'}
    </a>
  </div>
{/block}