
Tagged: main-menu
-
AuthorPosts
-
August 9, 2021 at 12:32 pm #1315834
Hello,
Is it possible to setup 2 different main menu’s, and use a specific menu on a specific page?
For example:
– Homepage: I would like to show Menu 1
– Other page: would like to show Menu 2Is that possible?
Thanks a lot!
Alwin :)
-
This topic was modified 4 years, 1 month ago by
Alwin.
August 10, 2021 at 1:39 pm #1316064Hey Alwin,
Thanks for contacting us!
Yes, that would be possible. Please see – https://kriesi.at/documentation/enfold/menu/#different-menu-for-different-pages :)
Best regards,
YigitAugust 13, 2021 at 7:10 pm #1316670Hello Yigit,
Do you know that the Zen Menu Logic is not updated for 4 years!?
I am not going to use that plugin :)
Do you have another solution?
Best Wishes,
AlwinAugust 13, 2021 at 7:38 pm #1316672Hi Alwin,
Please read on. Custom code solution is also on our documentation right below Zen Menu Logic option :)
Best regards,
YigitAugust 13, 2021 at 7:52 pm #1316673maybe this is an alternative:
https://wordpress.org/plugins/menu-items-visibility-control/
there are additonal fields on each Menu-Item – you can insert conditional tags there ( f.e. is_home() or ! is_home() etc pp )
https://codex.wordpress.org/Conditional_Tags
so it will be possible to even have is_user_logged_in() etc.August 14, 2021 at 8:25 am #1316720August 14, 2021 at 12:51 pm #1316741Hello Guenni007,
The plugin you ad viced worked perfect!
Thanks :)
Alwin
August 16, 2021 at 6:59 am #1316888Hi Alwin,
Great, I’m glad that @guenni007 could help you out. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardAugust 18, 2025 at 2:57 pm #1488182Dear team,
this is an older post, but I have the same need:Pages 1,2,3,ff shall show top menu A
Pages 4,5,6 ff shall show top menu BA,B entries (i.e. which pages affected) I can define via the enfold “Design/Menu” setting
But I dont find a way to assign them to related pages.
another participant / Guenni007 recommended this plugin – but it so longer alive:
https://wordpress.org/plugins/menu-items-visibility-control/-> How can I realize the different menus for dedicated pages acc. as described above?
-> Secondly: I would like to have a different color (red) for menu A vs. menu B (green) -> howto?Thx a lot & best regards, Tilman
August 18, 2025 at 5:20 pm #1488196Hi Tilman,
There’s no such functionality in the theme by default, and we are not aware of any plugins which does that either unfortunately.
Best regards,
RikardAugust 26, 2025 at 5:57 am #1488519Hi Rikard,
thx – maybe a nice functionality for on of the next updates… :-)And re. the page logo: Is there a way acc.? I.E. Logo 1 on pages A,B,C, Logo 2 on pages F,G,H?
Best regards
TilmanAugust 26, 2025 at 6:09 am #1488521Hi,
Thank you for the update.
Regarding the logo, you can use the avf_logo filter to display a different logo image on specific pages
function av_change_logo($logo) { if (is_page(9)) { $logo = 'http://kriesi.at/wp-content/themes/kriesi/images/logo.png'; } return $logo; } add_filter('avf_logo', 'av_change_logo');
— https://developer.wordpress.org/reference/functions/is_page/
If you have more questions, please feel free to open another thread: https://kriesi.at/support/forum/enfold/#new-post
Best regards,
Ismael -
This topic was modified 4 years, 1 month ago by
-
AuthorPosts
- The topic ‘Different main menu on specific page?’ is closed to new replies.