我需要为所有类别创建一个登录名,除了一个有自己的 ID 的类别,比如“192”
在 controller/category.php 我添加了以下...
if (!$this->customer->isLogged()) {
$this->session->data['redirect'] = $this->url->link('account/account', '', 'SSL');
$this->redirect($this->url->link('account/login', '', 'SSL'));
}
但这显然为所有类别添加了登录信息。
添加到上面的代码以使类别“192”不必登录查看的最佳方法是什么?