Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经安装了opencart。现在我想做一些事情,比如如果用户登录到系统,那么只有他才能看到产品列表和详细信息页面。如果他未登录,则无法查看产品。
我怎样才能做到这一点?是否有一些插件或扩展?
您可以使用下面的代码在客户登录或未登录时显示或隐藏产品
将此代码添加到产品控制器
$this->data['logged'] = $this->customer->isLogged();
并在产品模板中使用 if 标签
<?php if($logged){ ?> //is logged <?php }else { ?> //not logged <?php } ?>