我是Magento的新手,在我的网站中我希望在登录后显示类别,但对于某些类别,它在登录前显示,而某些类别在登录后也无法看到有库存。任何人都可以帮助我。 在此先感谢
答案 0 :(得分:0)
我不知道我是否完全理解您的问题,但我想您只想在用户登录后显示您的类别?
您只能在使用
登录后显示类别菜单<?php if ($this->helper('customer')->isLoggedIn() ): ?>
<-- Place the things you want the show here! -->
<?php endif ;?>
因此,如果您在topmenu(app / design / frontend / yourpackage / yourtheme / template / catalog / navigation / top.phtml)中使用它,它将看起来像这样
<?php if ($this->helper('customer')->isLoggedIn() ): ?>
<?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
<?php if($_menu): ?>
<div class="nav-container">
<ul id="nav">
<?php echo $_menu ?>
</ul>
</div>
<?php endif ?>
<?php endif ;?>