<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Editing the Magento Navigation</title>
	<atom:link href="http://www.exploremagento.com/magento/editing-the-navigation.php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.exploremagento.com/magento/editing-the-navigation.php</link>
	<description>Magento Design and Development Information</description>
	<lastBuildDate>Mon, 10 Jan 2011 07:35:46 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Name</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-1118</link>
		<dc:creator>Name</dc:creator>
		<pubDate>Thu, 30 Dec 2010 10:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-1118</guid>
		<description>Hello,
I have installed magento but in how to enable navigation menu. pls help...</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I have installed magento but in how to enable navigation menu. pls help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lukasz</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-1057</link>
		<dc:creator>Lukasz</dc:creator>
		<pubDate>Fri, 22 Oct 2010 13:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-1057</guid>
		<description>Hello, 

I&#039;m newbie nad I&#039;ve just installed Magento CE, but the problem which I face is maybe trival but I do not see menu at all. Can somebody give me some instructions how to activate menu? I thought the top menu will be visible by default ....</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I&#8217;m newbie nad I&#8217;ve just installed Magento CE, but the problem which I face is maybe trival but I do not see menu at all. Can somebody give me some instructions how to activate menu? I thought the top menu will be visible by default &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kamil</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-1056</link>
		<dc:creator>Kamil</dc:creator>
		<pubDate>Thu, 21 Oct 2010 20:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-1056</guid>
		<description>Hi everyone, found easy solution on youtube:
http://www.youtube.com/watch?v=w4z1RyyFHhU</description>
		<content:encoded><![CDATA[<p>Hi everyone, found easy solution on youtube:<br />
<a href="http://www.youtube.com/watch?v=w4z1RyyFHhU" rel="nofollow">http://www.youtube.com/watch?v=w4z1RyyFHhU</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-1035</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 14 Sep 2010 04:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-1035</guid>
		<description>Lars,

Thanks for the code, but I&#039;m having some trouble getting it to work. Could you contact me via PM for a quick discussion? awaken1222 [at] yahoo [dot] com.

Thanks!</description>
		<content:encoded><![CDATA[<p>Lars,</p>
<p>Thanks for the code, but I&#8217;m having some trouble getting it to work. Could you contact me via PM for a quick discussion? awaken1222 [at] yahoo [dot] com.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars J</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-993</link>
		<dc:creator>Lars J</dc:creator>
		<pubDate>Wed, 14 Jul 2010 13:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-993</guid>
		<description>For what it&#039;s worth, i&#039;ve created a simple addition to Navigation.php to create additional buttons, including active detection.

public function extraNavigationDetectActive($v){

    if($v == $_SERVER[&#039;REQUEST_URI&#039;]){
        return &#039;active&#039;;
    }

    return &#039;&#039;;

}

public function extraNavigation(){

    $html  = &#039;extraNavigationDetectActive(&#039;your URL&#039;).&#039; &quot;&gt;&#039;;
    $html .= &#039;&lt;a href=&quot;http://yourshop/magento/your URL&quot; rel=&quot;nofollow&quot;&gt;&#039;;
    $html .= &#039;Your text/label&lt;/a&gt;&#039;;

    return $html; 

}

You can add as many as you like, just add this line to the bottom of public function renderCategoriesMenuHtml, and uncomment/remove the &quot;return $html&quot;:

return $html.$this-&gt;extraNavigation();</description>
		<content:encoded><![CDATA[<p>For what it&#8217;s worth, i&#8217;ve created a simple addition to Navigation.php to create additional buttons, including active detection.</p>
<p>public function extraNavigationDetectActive($v){</p>
<p>    if($v == $_SERVER['REQUEST_URI']){<br />
        return &#8216;active&#8217;;<br />
    }</p>
<p>    return &#8221;;</p>
<p>}</p>
<p>public function extraNavigation(){</p>
<p>    $html  = &#8216;extraNavigationDetectActive(&#8217;your URL&#8217;).&#8217; &#8220;&gt;&#8217;;<br />
    $html .= &#8216;<a href="http://yourshop/magento/your URL" rel="nofollow">&#8216;;<br />
    $html .= &#8216;Your text/label</a>&#8216;;</p>
<p>    return $html; </p>
<p>}</p>
<p>You can add as many as you like, just add this line to the bottom of public function renderCategoriesMenuHtml, and uncomment/remove the &#8220;return $html&#8221;:</p>
<p>return $html.$this-&gt;extraNavigation();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steini</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-976</link>
		<dc:creator>steini</dc:creator>
		<pubDate>Tue, 08 Jun 2010 18:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-976</guid>
		<description>Hello,

how can I add another navigation, to display a second root category?
Haven&#039;t found anything on the web so far.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>how can I add another navigation, to display a second root category?<br />
Haven&#8217;t found anything on the web so far.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.D.</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-952</link>
		<dc:creator>J.D.</dc:creator>
		<pubDate>Sat, 01 May 2010 04:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-952</guid>
		<description>Ashey,

I&#039;m a newbie with the same problem. If I understand your question, I found the solution at:

http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/catalog_category/edit

It is important to get categories right.  In the hierarchy of categories, the first category represents the store level (or what Magento calls the root category).  The root category does not show in top navigation.  So, if your other categories are “sub” categories of the root category, they won’t show up either.</description>
		<content:encoded><![CDATA[<p>Ashey,</p>
<p>I&#8217;m a newbie with the same problem. If I understand your question, I found the solution at:</p>
<p><a href="http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/catalog_category/edit" rel="nofollow">http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/catalog_category/edit</a></p>
<p>It is important to get categories right.  In the hierarchy of categories, the first category represents the store level (or what Magento calls the root category).  The root category does not show in top navigation.  So, if your other categories are “sub” categories of the root category, they won’t show up either.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashely Crandell</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-950</link>
		<dc:creator>Ashely Crandell</dc:creator>
		<pubDate>Wed, 28 Apr 2010 06:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-950</guid>
		<description>Ok, newbie here. How do we actually get pages to appear in the navigation? I feel like a total loser not knowing that.</description>
		<content:encoded><![CDATA[<p>Ok, newbie here. How do we actually get pages to appear in the navigation? I feel like a total loser not knowing that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gus</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-896</link>
		<dc:creator>Gus</dc:creator>
		<pubDate>Tue, 23 Mar 2010 14:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-896</guid>
		<description>Adeel you did the right thing changin the top.html... For some reason the changes don&#039;e show up on the front end right away it may take a few minutes for the system to clear the cache.</description>
		<content:encoded><![CDATA[<p>Adeel you did the right thing changin the top.html&#8230; For some reason the changes don&#8217;e show up on the front end right away it may take a few minutes for the system to clear the cache.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rufino</title>
		<link>http://www.exploremagento.com/magento/editing-the-navigation.php/comment-page-1#comment-854</link>
		<dc:creator>Rufino</dc:creator>
		<pubDate>Thu, 28 Jan 2010 17:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.getfido.net/blog/?p=74#comment-854</guid>
		<description>No entiendo una mierda, todo el mundo lo explica para gente que ha trabajado ya en ello. Esot super perdido y no me funciona nada.
Pero en fin...

Thaks</description>
		<content:encoded><![CDATA[<p>No entiendo una mierda, todo el mundo lo explica para gente que ha trabajado ya en ello. Esot super perdido y no me funciona nada.<br />
Pero en fin&#8230;</p>
<p>Thaks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

