限制用户在magento中查看产品
限制登录用户的产品详细信息页面的最佳方法是什么?
What is the best way to restrict product detail page for logged in user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
限制登录用户的产品详细信息页面的最佳方法是什么?
What is the best way to restrict product detail page for logged in user?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
将登录检查添加到控制器,或者如果必须,则添加到具有以下条件的视图
add the login check to controller, or if you must then to the view with the following condition
谢谢各位的回复。我找到了另一种选择,通过添加您的受限参考 <删除名称=“wishlist_sidebar”>< /删除>
在这个标签中< customer_logged_out >在 customer.xml 中。
现在,如果客户注销,他将看不到 Wishlist_sidbar 块。
你对这个方法的看法。
Thanks guyes for your reply. I found one more option to do that by adding your restricted referance < remove name="wishlist_sidebar" >< /remove >
in this tag < customer_logged_out > at customer.xml.
now if customer is logged out he will not see the wishlist_sidbar block.
What you say about this approch.