2 个模板 authentication.tpl 不同

2 templates authentication.tpl different

我目前正在定制一个 prestashop 网站。我有 2 个不同的连接 URL,我想在我的模板 authentication.tpl 中的这 2 个 url 之间有 1 个不同的样式,因为 1 url 将用于 "customer" 的客户组和另一个 url 将用于组 "Enterprise" 。你知道我该怎么做吗? 谢谢。

尝试宽度覆盖 AuthController.php 并在您的连接中 link 添加 url &spe=1

class AuthController extends AuthControllerCore
{   
      public function initContent()
      {
           Parent::initContent();

           if (Tools::getValue('spe')) {            
               $this->setTemplate(_PS_THEME_DIR_.'authentication2.tpl');
           }
      }
}

此致