<?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: Folding menu for WordPress pages using jQuery</title>
	<atom:link href="http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 00:06:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Mark</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-6024</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 18 Feb 2011 16:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-6024</guid>
		<description>Instead of the Pages widget, we use Custom Menus (WP 3) which uses classes like menu-item, menu-item-type-TYPE, menu-item-ID, current-menu-item, current-menu-ancestor.  Is there a way to modify this plugin/script to work with custom menus instead of a Pages widget?</description>
		<content:encoded><![CDATA[<p>Instead of the Pages widget, we use Custom Menus (WP 3) which uses classes like menu-item, menu-item-type-TYPE, menu-item-ID, current-menu-item, current-menu-ancestor.  Is there a way to modify this plugin/script to work with custom menus instead of a Pages widget?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Annedorte</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-5485</link>
		<dc:creator>Annedorte</dc:creator>
		<pubDate>Sun, 02 Jan 2011 16:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-5485</guid>
		<description>Dear Elio,

Thank you for your quick reply. I will try that. 

Happy new year.
Kind regards,
Annedorte</description>
		<content:encoded><![CDATA[<p>Dear Elio,</p>
<p>Thank you for your quick reply. I will try that. </p>
<p>Happy new year.<br />
Kind regards,<br />
Annedorte</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elio</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-5450</link>
		<dc:creator>Elio</dc:creator>
		<pubDate>Tue, 28 Dec 2010 01:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-5450</guid>
		<description>Annedorte, you&#039;re going to have to add more specificity by including, for example, the ID of the sidebar where the widget is loaded or the ID of the widget, here:
&lt;code&gt;
jQuery(&quot;.page_item ul&quot;).hide();
jQuery(&quot;.current_page_item ul&quot;).slideDown();
&lt;/code&gt;
For instance, if the widget is loaded in a sidebar with id=&quot;secondary&quot; add this:
&lt;code&gt;
jQuery(&quot;#secondary .page_item ul&quot;).hide();
jQuery(&quot;#secondary .current_page_item ul&quot;).slideDown();
&lt;/code&gt;
Otherwise you need to enter the ID of the widget, so that it works more specifically, for instance:
&lt;code&gt;
jQuery(&quot;#pages-2 .page_item ul&quot;).hide();
jQuery(&quot;#pages-2 .current_page_item ul&quot;).slideDown();
&lt;/code&gt;
BTW, make sure you&#039;re using the updated version of this code (which is actually a WordPress plugin) located in &lt;a title=&quot;Folding menu for WordPress pages using jQuery&quot; href=&quot;http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/&quot; rel=&quot;nofollow&quot;&gt;this page&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Annedorte, you&#8217;re going to have to add more specificity by including, for example, the ID of the sidebar where the widget is loaded or the ID of the widget, here:<br />
<code><br />
jQuery(".page_item ul").hide();<br />
jQuery(".current_page_item ul").slideDown();<br />
</code><br />
For instance, if the widget is loaded in a sidebar with id=&#8221;secondary&#8221; add this:<br />
<code><br />
jQuery("#secondary .page_item ul").hide();<br />
jQuery("#secondary .current_page_item ul").slideDown();<br />
</code><br />
Otherwise you need to enter the ID of the widget, so that it works more specifically, for instance:<br />
<code><br />
jQuery("#pages-2 .page_item ul").hide();<br />
jQuery("#pages-2 .current_page_item ul").slideDown();<br />
</code><br />
BTW, make sure you&#8217;re using the updated version of this code (which is actually a WordPress plugin) located in <a title="Folding menu for WordPress pages using jQuery" href="http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/" rel="nofollow">this page</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Annedorte</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-5445</link>
		<dc:creator>Annedorte</dc:creator>
		<pubDate>Mon, 27 Dec 2010 04:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-5445</guid>
		<description>A really great and useful plugin. However I have trouble on my site because there are two menus and it unfolds both. The top menu is a dropdown and should remain that way so only the parent is showing. In the sidebar I have a widget with my pages and I want that to fold/unfold. It works well. Except that when the plugin is activated it unfolds the top menu too. How do I change that?</description>
		<content:encoded><![CDATA[<p>A really great and useful plugin. However I have trouble on my site because there are two menus and it unfolds both. The top menu is a dropdown and should remain that way so only the parent is showing. In the sidebar I have a widget with my pages and I want that to fold/unfold. It works well. Except that when the plugin is activated it unfolds the top menu too. How do I change that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-2290</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 21 Dec 2009 03:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-2290</guid>
		<description>I&#039;m looking for exactly this feature but for Categories

Have tried FoCal but it&#039;s not working  as it shouold</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking for exactly this feature but for Categories</p>
<p>Have tried FoCal but it&#8217;s not working  as it shouold</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ostrov</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-2097</link>
		<dc:creator>ostrov</dc:creator>
		<pubDate>Wed, 02 Dec 2009 15:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-2097</guid>
		<description>Thank you,
very interesting article</description>
		<content:encoded><![CDATA[<p>Thank you,<br />
very interesting article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dkulagin</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-2096</link>
		<dc:creator>Dkulagin</dc:creator>
		<pubDate>Wed, 02 Dec 2009 14:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-2096</guid>
		<description>Hi! You have a good style description.</description>
		<content:encoded><![CDATA[<p>Hi! You have a good style description.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cla-ude</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-1402</link>
		<dc:creator>Cla-ude</dc:creator>
		<pubDate>Tue, 29 Sep 2009 09:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-1402</guid>
		<description>Thanks for this article.
I&#039;ve used it to hide my subcategories in a menu using the Shopp e-commerce plugin.
As my usual plugin wasn&#039;t working (Shopp don&#039;t use the normal WP categories, posts or pages but has it&#039;s own menu), I&#039;ve customized your code and it&#039;s working great :-)
Thanks one more time.</description>
		<content:encoded><![CDATA[<p>Thanks for this article.<br />
I&#8217;ve used it to hide my subcategories in a menu using the Shopp e-commerce plugin.<br />
As my usual plugin wasn&#8217;t working (Shopp don&#8217;t use the normal WP categories, posts or pages but has it&#8217;s own menu), I&#8217;ve customized your code and it&#8217;s working great <img src='http://www.ilovecolors.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Thanks one more time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rhinoplasty</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-1363</link>
		<dc:creator>rhinoplasty</dc:creator>
		<pubDate>Thu, 24 Sep 2009 02:03:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-1363</guid>
		<description>Nice site!</description>
		<content:encoded><![CDATA[<p>Nice site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliot</title>
		<link>http://www.ilovecolors.com.ar/folding-menu-for-wordpress-pages-using-jquery/#comment-1265</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Sun, 13 Sep 2009 20:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=296#comment-1265</guid>
		<description>Go ahead and try it. Let me know if you have any issues.</description>
		<content:encoded><![CDATA[<p>Go ahead and try it. Let me know if you have any issues.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

