OlivertAr

Navigation Bar administrator

  • Popularity Score 18405 Popularity Score

    Popularity ScoreReferrals to Site/Downloads

    0 0 1+ 1+ 250+ 250+ 1000+ 1000+ 10000+ 10000+

Navigation Bar administrator
Compatible with:
This extension is currently unavailable on Magento Connect. Please contact the developer.

You will be re-directed to the developer's website to complete your purchase.

You must be registered and logged in to get extension key.
In order to get this extension, you must be logged in to the Magento Community. Click here to login or register.
In order to get this extension, you must have active Magento Go Store. Click here to create Go store.
You must choose from Magento Connect Version 1.5.1.0 or 2.0.
Learn more

Magento Connect 1.0 change

FREE
Previous Next
Overview

Navigation Bar administrator

Frontend Navigation Bar administrator - Multiples languages and menu levels

New commercial version: http://www.magentoxp.com/magento-extensions/menu-admin.html

With this extension you can manage the navigation bar on your site.

Features:

Multiple store views

Multi-level menu Sort menu items

Set link target Enable/Disable items

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>
<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"/>

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 getChildHtml('topNavadmin') ?> </ul> </div>

Extra: Comment this <?php echo getChildHtml('topMenu') ?>

3- If you need change your css

 

Follow us

 

Developer page: http://www.magentoxp.com

Release Notes

Simple Navigation bar administrator

2008-11-22 15:10:49
  • Version number: 1.1.0
  • Stability: Stable
  • Compatibility: 1.3, 1.4, 1.4.1.1, 1.4.2, 1.5
You must be registered and logged in to get extension key.
You must choose from Magento Connect Version 1.5.1.0 or 2.0.
Learn more

Magento Connect 1.0 change

Simple Navigation bar administrator Multiples store Multiples levels Sort menu items Set target Enable/Disable items

Navigation Bar administrator

2008-11-20 23:43:55
  • Version number: 1.0.2
  • Stability: Stable
  • Compatibility: 1.3, 1.4, 1.4.1.1, 1.4.2, 1.5
You must be registered and logged in to get extension key.
You must choose from Magento Connect Version 1.5.1.0 or 2.0.
Learn more

Magento Connect 1.0 change

Navigation Bar administrator Multiple menu levels

Navigation Bar administrator

2008-11-20 23:29:53
  • Version number: 1.0.1
  • Stability: Stable
  • Compatibility: 1.3, 1.4, 1.4.1.1, 1.4.2, 1.5
You must be registered and logged in to get extension key.
You must choose from Magento Connect Version 1.5.1.0 or 2.0.
Learn more

Magento Connect 1.0 change

Navigation Bar administrator Multiple menu levels

Navigation bar administration

2008-11-20 18:27:47
  • Version number: 1.0
  • Stability: Stable
  • Compatibility: 1.3, 1.4, 1.4.1.1, 1.4.2, 1.5
You must be registered and logged in to get extension key.
You must choose from Magento Connect Version 1.5.1.0 or 2.0.
Learn more

Magento Connect 1.0 change

Navigation bar administration with multiple menu levels
Reviews

About the Developer

This extension was developed by and is supported by OlivertAr

Navigation Bar administrator 5 5 23 23
MenuCreatorPro Our newest extension maybe help you solved any Navigation issues for Magento Frontend: http://www.menucreatorpro.com/ April 11, 2013
Thank you this module is rally very useful, although I've modified it according to version 1.7.2 Thanks for it's really save my days.. Thanks a lot :) March 25, 2013
I couldn't figure out how to make this extension work. The instructions aren't clear and refer to code that isn't even in the files on my Community install. Sent support request Friday and have not heard back. After undoing and ripping out this extension, I made it work by following the instructions here: http://www.yireo.com/tutorials/magento/magento-administration/652-video-create-menu-item-in-navigation-bar-magento December 10, 2012
When installed, you have to move app/design/frontend/default/default/layout/navadmin.xml to app/design/frontend/base/default/layout/ Same for app/design/frontend/default/default/template/navadmin/ December 4, 2012
this is useless, cause you can create custom link in the default nav bar. Add a category (enter a name ) gt;gt; display setting ( choose you'rs cms block).... September 3, 2012
@Dave_83, Thanks for your pointers, but the active-class didn't work for me. The 'problem' was that the store code is used in my URL. And what about absolute URL's which start with a slash? I Improved your two lines for your $active-parameter to the following to do the trick: // Check URL for active class: $checkURL = Mage::helper('core/url')-gt;getCurrentURL(); if($item['link']{0} == '/') { $a = explode('/', $checkURL); array_shift($a); array_shift($a); array_shift($a); if(empty($a[count($a)-1])) { array_pop($a); } $checkURL = '/'.implode('/', $a); } // check for trailing slashes: if($item['link']{strlen($item['link'])-1} == '/' amp;amp; $checkURL{strlen($checkURL)-1} != '/') { $checkURL .= '/'; } elseif($item['link']{strlen($item['link'])-1} != '/' amp;amp; $checkURL{strlen($checkURL)-1} == '/') { $checkURL = substr($checkURL, 0, strlen($checkURL) - 1); } $active = $checkURL == $item['link'] ? " active" : ''; --- Also, the slug generation in this code is rathor quirky. It allows for characters as ':' and '#' to be used in the class name. Replacing this: $html.= ' nav-'.str_replace(array('/', ':', '#'), '-', $item['link']); to this: $slug = preg_replace("/[\/_|+ -]+/", '-', strtolower(trim(preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $item['link'])))); $html.= ' nav-'.$slug; fixes it. March 15, 2012
I too got this working on 1.6.2, but I used the instructions of Paul Whipp here: http://www.magentocommerce.com/boards/viewthread/73042/ One question - any way to make it so my navigation bar has 1) some custom items 2) built-in Magento categories 3) some more custom items right now, all my custom items are in a group before the categories, and no "position" number affects this. March 7, 2012
This extension works nicely on Magento 1.6.2! March 6, 2012
I really like this extension. Minor issue when running Magento 1.6.1.0 and 1.6.2.0. A lot nbsp is added to "children of" dropdown. See http://imageshack.us/photo/my-images/593/navadmin.png/ Is there an easy fix for this? January 12, 2012
Cool extension, but unfortunately, doesn't work in compiler mode November 22, 2011
2 3 next>>
Q&A
(1 Question : 1 Answer)

Product Q&A

Ask your questions. Share your answers.

 
 
« Back
 
 
Avatar Image Url:: http://www.magentocommerce.com/images/avatars/uploads/avatar_26970921
Customer avatar
Connect manager says couldn't resolve host when I put in the key. Do you have it correct?
by
oipteaapdoce
-
4 weeks, 1 day ago
0points
0out of 0found this question helpful.
Was this helpful?Yes0No0

Answers

Avatar Image Url:: http://www.magentocommerce.com/images/avatars/uploads/avatar_26985306
Customer avatar
Answer: 
I was trying to connect with a Key for Ver 1 and had the same issue. I tried Ver 2 and got a new key. I pasted this in to MagnetoConnect and it worked.

Try it out!

Cheers

Raj
by
rajurkar
-
4 days ago
0points
0out of 0found this answer helpful.
Was this helpful?Yes0No0
1 of 1

Product Q&A

1 Question | 1 Answer
1 of 1
Get Help

Support for This Extension

The best place to start if you need help with a specific extension is to contact the developer. All Magento developers have both a contact email and a support email listed.

Magento Platform Support

If you need support for a Magento platform, there are different options for support depending on which Magento platform you are using. Below are links for specific platforms.

In order to upload extension, you must be logged in to the Magento Community. Click here to login or register.

Close

Register

* Required Fields

Close window

Forgot Your Password?

Please enter your email below and we'll send you a new password.

* Required Fields

Close window

Login

To upload extension you must be logged in.

* Required Fields

Forgot Password?

New User? Register

Close window

You are using an outdated browser

We built Magento Connect using the latest techniques and technologies.
This makes Magento Connect faster and easier to use.
Unfortunately, your browser doesn't support those technologies.
Use the links below to download a new browser or upgrade your existing browser.