Questions tagged «menu»

3
将链接添加到类别菜单
我知道这是一个有很多答案的老问题,其中大多数建议编辑菜单模板,但这对我不起作用。无需解释为什么,让我有点强迫症,以“正确”的方式做事。 这个问题可以作为有需要的其他人的材料。开始。 从Magento 1.7开始,使用以下事件构建顶部菜单:page_block_html_topmenu_gethtml_before。Mage_Catalog模块使用它来添加类别。我想用那个。为此,我在模块中创建了一个观察者,如下所示: <global> <events> <page_block_html_topmenu_gethtml_before> <observers> <my_observer> <class>mymodule/observer</class> <method>addItemsToTopmenuItems</method> </my_observer> </observers> </page_block_html_topmenu_gethtml_before> </events> </global> 在Observer.php课堂上我有 public function addItemsToTopmenuItems($observer){ //get the menu object: //Type Varien_Data_Tree_Node $menu = $observer->getMenu(); //get the tree object in the menu //type Varien_Data_Tree $tree = $menu->getTree(); //get current page handler $action = Mage::app()->getFrontController()->getAction()->getFullActionName(); $brandNodeId = …
20 magento-1.7  menu 

2
Magento 2导航菜单未显示
我是Magento的新手,所以请忍受我:D 我已经成功创建了一个空白主题子主题。 我正在尝试使菜单正常工作,我一生都无法看到菜单为何不显示。我读过其他几个主题,也没有运气。 我在其中添加了根类别及其子类别。然后,我将其分配给商店设置。我已经重新索引了该站点的索引,清除了缓存,但仍然没有任何乐趣。 通过添加类别,它会显示出来,这是对的事情吗? 谢谢 似乎我没有默认类别-请参见下面的屏幕截图 更新 我已经在本地计算机上重新安装了Magento。菜单在Luma和Blank主题上显示良好,但在我自己的自定义主题上却没有显示。我需要包括或检查什么吗? 谢谢您的帮助


2
从RWD主题的导航中删除“查看所有类别”链接
如何从rwd主题的菜单中删除“查看全部”链接? 这是我当前拥有的一组类别,以及我希望其如何显示在菜单中 类别1- 子类别1 ----子类别1- 子类别2 类别2- 子类别1 使用rwd时会显示如下菜单 类别1- 查看所有类别1- 子类别1 ----查看所有子类别1 ----子类别 -子类别2 类别2- 子类别1 我尝试搜索,但找不到解决方案。
8 menu  rwd  rwd-theme 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.