Navigation Bar administrator
Please note that this extension is provided as is. It is recommended to always backup your installation prior to usage.
| Created | |
| Last Updated | Sat, November 22, 2008 |
| Version | 1.1.4 |
| Compatibility | Magento 1.x.x |
| Stability | stable |
| Locales available in this package | N/A |
| Downloads | 4755 |
| Community Rating | |
| Categories | Interfaces, Themes, Catalog, Templates |
| License Type | GNU Lesser General Public License (LGPL) |
| Tags | nav, menu |
Overview
Navigation Bar administrator
Frontend Navigation Bar administrator - Multiples languages and menu levels
With this extension you can manage the navigation bar on your site.
New in this version:
Suport multiple store views ( Multi-Lingual)
You can manage the menu for each store
Features:
Multiple store views (New)
Multi-level menu
Sort menu items
Set link target
Enable/Disable items
This extension is free to the community but I do work on it in my spare time so any donations are greatly appreciated - thank you in advance!
Use:
In admin panel, under the menu cms now has a new menu "navigation bar"
Implementation:
1- Install magento extension
2- Show in Frontend
Edit: /app/design/frontend/default/THEME/layout/catalog.xml
<default>
<!-- Mage_Catalog -->
<reference name="top.menu">
<block type="catalog/navigation" name="catalog.topnav" template="catalog/navigation/top.phtml"/>
</reference>
ADD
<reference name="top.navadmin">
<block type="navadmin/navadmin" name="navadmin" template="navadmin/top.phtml"/>
</reference>
Edit: /app/design/frontend/default/THEME/layout/page.xml
<default>....
<block type="page/html_header" name="header" as="header">
<block type="page/template_links" name="top.links" as="topLinks"/>
<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
<block type="core/text_list" name="top.menu" as="topMenu"/>
ADD THIS
<block type="core/text_list" name="top.navadmin" as="topNavadmin"/>
Edit: /app/design/frontend/default/THEME/template/page/html/header.phtml
<div class="nav">
<ul id="nav">
<?php echo $this->getChildHtml('topNavadmin') ?>
</ul>
</div>
Extra: Comment this
<?php //echo $this->getChildHtml('topMenu') ?>
3- If you need change your css
Please, feedback to: olivertar gmail com

