Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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 2

    Is that possible?

    Thanks a lot!

    Alwin :)

    • This topic was modified 4 years, 1 month ago by Alwin.
    #1316064

    Hey 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,
    Yigit

    #1316670

    Hello 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,
    Alwin

    #1316672

    Hi Alwin,

    Please read on. Custom code solution is also on our documentation right below Zen Menu Logic option :)

    Best regards,
    Yigit

    #1316673

    maybe 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.

    #1316720

    Hi,

    Thanks for your help @Guenni007 :)

    Best regards,
    Yigit

    #1316741

    Hello Guenni007,

    The plugin you ad viced worked perfect!

    Thanks :)

    Alwin

    #1316888

    Hi 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,
    Rikard

    #1488182

    Dear 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 B

    A,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

    #1488196

    Hi 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,
    Rikard

    #1488519

    Hi 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
    Tilman

    #1488521

    Hi,

    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

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Different main menu on specific page?’ is closed to new replies.