<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Max number of items in menu</title>
		<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Max number of items in menu</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 13:01:07 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/max-number-of-items-in-menu" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-28000</link>
			<pubDate>Mon, 24 Mar 2014 08:56:01 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28000@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>That wouldn't be a theme-related issue as the menu system is controlled/managed by WordPress. I can't think of anything theme-related that would help you resolve this issue. My best suggestion is to search the WordPress support forums here: <a href="http://wordpress.org/support" rel="nofollow">http://wordpress.org/support</a></p>
<p>If you find something theme-related causing this issue, please post a new thread and I'll be happy to review this with you. Please also be sure to include a link to your site.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Nomadog on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-27982</link>
			<pubDate>Fri, 21 Mar 2014 21:40:40 +0000</pubDate>
			<dc:creator>Nomadog</dc:creator>
			<guid isPermaLink="false">27982@http://www.themolitor.com/forums/</guid>
			<description><p>I have a similar issue but it's not about the display its about not being able to add any more menu items. I hit save and the new menu item gets dropped off. I tried spreading out the hierarchy so this wouldn't happen.
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-26203</link>
			<pubDate>Wed, 08 Jan 2014 11:15:32 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">26203@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks Chris, </p>
<p>If you could add clustering too it would be perfect:-)</p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-26197</link>
			<pubDate>Wed, 08 Jan 2014 09:48:38 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26197@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Version 2.0.2 now includes this feature. More info here: <a href="http://www.themolitor.com/forums/topic/update-v200-for-the-navigator#post-26180" rel="nofollow">http://www.themolitor.com/forums/topic/update-v200-for-the-navigator#post-26180</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-26189</link>
			<pubDate>Wed, 08 Jan 2014 06:20:14 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">26189@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks Chris. </p>
<p>I will give it a try:-)</p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-26012</link>
			<pubDate>Thu, 02 Jan 2014 10:44:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26012@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try this...</p>
<p>1. Open style.css and change the following on line 206 from this...</p>
<pre><code>#selectMenu {display: none;}</code></pre>
<p>...to this...</p>
<pre><code>#dropmenu .navDash {display: none;}

#selectMenu {display: none;}</code></pre>
<p>2. Open responsive.css and change the following on line 35 from this...</p>
<pre><code>#navigation {display: none;}</code></pre>
<p>...to this...</p>
<pre><code>#navigation {float: none;}
#navigation #dropmenu {display: none;}</code></pre>
<p>3. Open custom.js and change the following on lines 292-297 from this...</p>
<pre><code>////////////////
//RESPONSIVE MENU
////////////////
jQuery(&#34;#selectMenu&#34;).change(function() {
  	window.location = jQuery(this).find(&#34;option:selected&#34;).val();
});</code></pre>
<p>...to this...</p>
<pre><code>////////////////
//RESPONSIVE MENU
////////////////
// Create the dropdown base
jQuery(&#34;&#60;select id=&#039;selectMenu&#039;&#62;&#60;select /&#62;&#34;).appendTo(&#34;#navigation&#34;);

// Create default option &#34;Go to...&#34;
jQuery(&#34;&#60;option /&#62;&#34;, {
   &#34;selected&#34;: &#34;selected&#34;,
   &#34;value&#34;   : &#34;&#34;,
   &#34;text&#34;    : &#34;Menu&#34;
}).appendTo(&#34;#navigation select&#34;);

// Populate dropdown with menu items
jQuery(&#34;#dropmenu a&#34;).each(function() {
 	var el = jQuery(this);

 	el.parents(&#039;.sub-menu&#039;).each(function(){
 		el.prepend(&#039;&#60;span class=&#34;navDash&#34;&#62;-&#60;/span&#62;&#039;);
 	});

 	jQuery(&#34;&#60;option /&#62;&#34;, {
  	   &#34;value&#34;   : el.attr(&#34;href&#34;),
	   &#34;text&#34;    : el.text()
	}).appendTo(&#34;#navigation select&#34;);
});

// Load url when selected
jQuery(&#34;#selectMenu&#34;).change(function() {
	window.location = jQuery(this).find(&#34;option:selected&#34;).val();
});</code></pre>
<p>4. Open header.php and remove the following on lines 81-94...</p>
<pre><code>//SELECT MENU FOR SMALLER SCREENS
$menu_name = &#039;main&#039;;
if ( ( $locations = get_nav_menu_locations() ) &#38;&#38; isset( $locations[ $menu_name ] ) ) {
	$menu = wp_get_nav_menu_object( $locations[ $menu_name ] );
	$menu_items = wp_get_nav_menu_items($menu-&#62;term_id);
	$menu_list = &#039;&#60;select id=&#34;selectMenu&#34;&#62;&#60;option value=&#34;&#34; selected=&#34;selected&#34;&#62;&#039;.__(&#039;Menu&#039;,&#039;themolitor&#039;).&#039;&#60;/option&#62;&#039;;
	foreach ( (array) $menu_items as $key =&#62; $menu_item ) {
	    	$title = $menu_item-&#62;title;
	   		$url = $menu_item-&#62;url;
	   		$menu_list .= &#039;&#60;option value=&#34;&#039; . $url . &#039;&#34;&#62;&#039; . $title . &#039;&#60;/option&#62;&#039;;
		}
	$menu_list .= &#039;&#60;/select&#62;&#039;;
	echo $menu_list;
    }</code></pre>
<p>Let me know if that works for you.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25992</link>
			<pubDate>Tue, 31 Dec 2013 09:48:17 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25992@http://www.themolitor.com/forums/</guid>
			<description><p>Another example for a theme I have worked with before. </p>
<p><a href="http://demo.theme-fusion.com/" rel="nofollow">http://demo.theme-fusion.com/</a></p>
<p>Thanks </p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25991</link>
			<pubDate>Tue, 31 Dec 2013 09:44:47 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25991@http://www.themolitor.com/forums/</guid>
			<description><p>Hello Chris, </p>
<p>Take a look at this (it was a plugin I was just looking at) - it does the same thing as many WP based sites with the responsive menu, will can see that sections are indented (sub menus)</p>
<p><a href="http://agility.sevenspark.com/responsive-select-menu" rel="nofollow">http://agility.sevenspark.com/responsive-select-menu</a></p>
<p> Thanks again, </p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25989</link>
			<pubDate>Tue, 31 Dec 2013 09:38:43 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25989@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Not sure about it being standard, but do you have examples of menus with your preferred structure? I'll take a look to see if there's a simple CSS edit to be applied.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25986</link>
			<pubDate>Tue, 31 Dec 2013 09:32:08 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25986@http://www.themolitor.com/forums/</guid>
			<description><p>Hello, </p>
<p>I will post it there but to be honest it's not really a feature request, this is standard on mobile menus so is there some way to change it now? Otherwise the mobile menu view is really unusable for drop menu url structures.  </p>
<p>If not, do you know of any mobile menu plugins that would work? </p>
<p>Thanks Chris, </p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25974</link>
			<pubDate>Tue, 31 Dec 2013 09:01:56 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25974@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I totally understand what you're saying. Please be sure to post feature requests here: <a href="http://www.themolitor.com/forums/topic/feature-requests-1" rel="nofollow">http://www.themolitor.com/forums/topic/feature-requests-1</a></p>
<p>I review suggestions there when I'm working on updates.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25957</link>
			<pubDate>Mon, 30 Dec 2013 15:25:10 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25957@http://www.themolitor.com/forums/</guid>
			<description><p>Another thing while I am discussing menus. I have noticed that in the responsive menu the sub cats are not broken down like a traditional responsive menu structure, it's just one long list, is this a bug or something because on a responsive menu it should be more like:</p>
<p>home<br />
contact<br />
pages<br />
--page 1<br />
--page 2</p>
<p>At the moment it is like:</p>
<p>home<br />
contact<br />
pages<br />
page 1<br />
page 2</p>
<p>When you have categories and sub categories the responsive menu will be very difficult to navigate. </p>
<p>Thanks </p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25956</link>
			<pubDate>Mon, 30 Dec 2013 15:21:07 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25956@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks for the reply. </p>
<p>The only problem with that is there will be 3 levels: west states, state name, city name. Gets kind of messy. </p>
<p>Thanks again, </p>
<p>Andrew
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25947</link>
			<pubDate>Mon, 30 Dec 2013 14:43:43 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25947@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Unfortunately there are limits to how much content can be contained in a drop down menu. My best suggestion is to group them differently than just a mass list (which isn't very user friendly anyways). Maybe "West States", "Central States" and "East States" menu items?</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>awilson3rd on "Max number of items in menu"</title>
			<link>http://www.themolitor.com/forums/topic/max-number-of-items-in-menu#post-25929</link>
			<pubDate>Mon, 30 Dec 2013 12:36:57 +0000</pubDate>
			<dc:creator>awilson3rd</dc:creator>
			<guid isPermaLink="false">25929@http://www.themolitor.com/forums/</guid>
			<description><p>Hello, </p>
<p>I have hit a big of a problem and am not sure what to do. </p>
<p>Basically I am creating a top menu item called 'States' and within that menu item will be a drop down list of states, each state will also have cities as an additional menu item. The problem is I have got up to Louisiana which means the menu goes past the actual page length and there is no way to scroll down beyond this. </p>
<p>Any suggestions? I don't really want to split states into a-d e-g etc because it looks messy and just adds another level to the navigation. </p>
<p>Thanks in advance for any suggestions. </p>
<p>Andrew
</p></description>
		</item>

	</channel>
</rss>
