朋友您好我开发了一个magento网站,我创建了页面,我想将该页面链接到导航菜单栏
http://www.magentocommerce.com/knowledge-base/entry/adding-page-links-in-the-navigation-bar
答案 0 :(得分:0)
从Magento CE 1.7开始,有一个事件可以让您在顶部菜单中添加任何内容
该活动为page_block_html_topmenu_gethtml_before
。在默认主题中,这用于在菜单中添加类别。查看方法Mage_Catalog_Model_Observer::addCatalogToTopmenuItems()
。你也可以这样做
如果您正在处理1.7之前的版本,只需编辑文件app/design/frontend/{interface}/{theme}/template/catalog/navigation/top.phtml
并在ul
元素中添加您的链接:
<ul id="nav">
<?php echo $_menu ?>
<li><a href="<?php echo $this->getUrl('', array('_direct'=>'page_identifier_here'))?>"><?php echo $this->__('Text here')?></a></li>
</ul>
或者像这样
<ul id="nav">
<?php echo $_menu ?>
<li><a href="<?php echo $this->getUrl('page_identifier_here')?>"><?php echo $this->__('Text here')?></a></li>
</ul>
版本1.6的方法也适用于1.7,但它并不干净。