<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: Choices theme - custom menus for navigation?</title>
		<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation</link>
		<description>Support Forum - Topic: Choices theme - custom menus for navigation?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 22:47:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/choices-theme-custom-menus-for-navigation" rel="self" type="application/rss+xml" />

		<item>
			<title>interwood on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84819</link>
			<pubDate>Wed, 21 Nov 2012 03:28:20 +0000</pubDate>
			<dc:creator>interwood</dc:creator>
			<guid isPermaLink="false">84819@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Actually, don't worry about responding to this - I think it works just fine with repeating the menu choices. &#60;/p&#62;
&#60;p&#62;I now seem to have another issue but I'll do a search first and then open a support ticket if I can't resolve it.&#60;/p&#62;
&#60;p&#62;Thanks for the awesome support - it's a refreshing thing!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>interwood on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84818</link>
			<pubDate>Wed, 21 Nov 2012 02:51:13 +0000</pubDate>
			<dc:creator>interwood</dc:creator>
			<guid isPermaLink="false">84818@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;br /&#62;
This works really well and I was able to get three distinct menus to show on three pages. But.... &#60;/p&#62;
&#60;p&#62;I looked at the codex for is_page references and tried to work in this idea I saw there: is_page(array(42,'about-me','Contact')); where I put in all the page names of the pages that should show a certain menu.&#60;/p&#62;
&#60;p&#62;But that didn't work.&#60;/p&#62;
&#60;p&#62;I was able to repeat the 'else if' code and it worked. I am willing to do that for each page if necessary. Unless you can suggest an easier method?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84817</link>
			<pubDate>Wed, 21 Nov 2012 02:25:33 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84817@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Alright, let us know how it goes.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>interwood on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84810</link>
			<pubDate>Wed, 21 Nov 2012 02:13:58 +0000</pubDate>
			<dc:creator>interwood</dc:creator>
			<guid isPermaLink="false">84810@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Ismael, I'll give it a try and report back!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84798</link>
			<pubDate>Wed, 21 Nov 2012 01:34:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84798@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can try to call a different menu via menu ID then create conditional for each. Open header.php and find this code &#60;/p&#62;
&#60;p&#62;&#60;code&#62;wp_nav_menu($args);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Replace it with this code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( is_page( &#38;#39;First Page&#38;#39; )) {
						wp_nav_menu( array(&#38;#39;menu&#38;#39; =&#38;gt; &#38;#39;Main Menu&#38;#39; ));
						} else if ( is_page( &#38;#39;Second Page&#38;#39; )) {
						wp_nav_menu( array(&#38;#39;menu&#38;#39; =&#38;gt; &#38;#39;Second Menu&#38;#39; ));
						} else if ( is_page( &#38;#39;Third Page&#38;#39; )) {
						wp_nav_menu( array(&#38;#39;menu&#38;#39; =&#38;gt; &#38;#39;Third Menu&#38;#39; ));
						} else {
						wp_nav_menu($args);
						};&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You need to go to Appearance &#38;gt; Menus and create the Main Menu, Second Menu, Third Menu. Then create the pages First Page, Second Page and Third Page.&#60;/p&#62;
&#60;p&#62;Visit this links for reference&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/is_page&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/is_page&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_nav_menu&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/wp_nav_menu&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>interwood on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84762</link>
			<pubDate>Tue, 20 Nov 2012 19:33:44 +0000</pubDate>
			<dc:creator>interwood</dc:creator>
			<guid isPermaLink="false">84762@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Dude,&#60;br /&#62;
Thanks for the reply. Amazingly, I've searched through the plugins and done several google searches and just haven't found a plugin that does this. Found several that do other menu-type things (such as showing a menu in the page, or widget/menus etc).&#60;/p&#62;
&#60;p&#62;If I am daring to try this customization on my own, can you offer any suggestions of how to start? (I think I read that you're not accepting any custom work these days, but if you are let me know!)&#60;/p&#62;
&#60;p&#62;For example, would it be wise to create 3 different template pages and call different menus from there?&#60;/p&#62;
&#60;p&#62;Or, I found this bit of conidtional code that I could try but wasn't sure where to put it:&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
if(is_front_page()) :&#60;br /&#62;
    $exclude = '10,11,12';&#60;br /&#62;
elseif(is_page(15)) :&#60;br /&#62;
    $exclude = '1,2,3';&#60;br /&#62;
endif;&#60;br /&#62;
wp_list_pages('title_li=&#38;amp;depth=1&#38;amp;exclude=' . $exclude);&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;I know this is above and beyond typical theme support but I'd appreciate any nudges in the right direction!!&#60;br /&#62;
Thanks,&#60;br /&#62;
Allyson
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84710</link>
			<pubDate>Tue, 20 Nov 2012 13:29:04 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">84710@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Maybe you can find an useful plugin here: &#60;a href=&#34;http://wordpress.org/extend/plugins/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/&#60;/a&#62; which allows you to assign different menus to different pages. Choices use a standard wordpress function to call the menu and a plugin which hooks into this function should work without additional/custom code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>interwood on "Choices theme - custom menus for navigation?"</title>
			<link>http://www.kriesi.at/support/topic/choices-theme-custom-menus-for-navigation#post-84694</link>
			<pubDate>Tue, 20 Nov 2012 12:07:57 +0000</pubDate>
			<dc:creator>interwood</dc:creator>
			<guid isPermaLink="false">84694@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;br /&#62;
Love the choices theme. Is it possible to call different menus on different pages?&#60;br /&#62;
My client does three distinct types of work, so once a visitor selects the type, she would like a different menu to appear in the navigation bar.&#60;/p&#62;
&#60;p&#62;I've found some suggestions that this is possible in the wordpress forums but I don't know how to apply it with the avia framework.&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Allyson
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
