我目前正在定制一个prestashop网站。我有2个不同的连接URL,我希望在我的模板authentication.tpl中这两个URL之间有1种不同的样式,因为1个url将用于“customer”组的客户,而另一个url将用于“Enterprise”组。你知道我怎么能这样做吗? 谢谢。
答案 0 :(得分:0)
尝试使用宽度覆盖AuthController.php并在你的连接链接中添加url& spe = 1
class AuthController extends AuthControllerCore
{
public function initContent()
{
Parent::initContent();
if (Tools::getValue('spe')) {
$this->setTemplate(_PS_THEME_DIR_.'authentication2.tpl');
}
}
}
此致