Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #651528

    Hi!

    I’d need to make a different menu (with its own logo) for one specific page of my website. How would this best be achieved? I have tried using a full-width submenu, but I can’t drag it into the color section of the top of the page. Also, when I try with code, the code is aligned with the center of the color section (which is useful on other pages), instead of displaying on top. Any solution for this?

    Regards,
    Poirot

    #652495

    Hey Poirot,

    Thank you for using Enfold.

    You can use the following plugin to assign a different set of menu for a specific page:

    https://wordpress.org/plugins/zen-menu-logic/
    https://wordpress.org/plugins/menu-items-visibility-control/

    For the logo, please follow the instructions here: https://kriesi.at/support/topic/create-different-headers-for-pages/#post-623836

    Best regards,
    Ismael

    #653900

    Hi Ismael,

    Brilliant, thank you.

    Regards
    Poirot

    #653931

    Hi!

    Glad we got it short out.
    Please do remember to rate our theme, from your Themeforest dashboard, it help us a lot.
    Feel free to open a new ticket if anything else is needed.

    Regards,
    Basilis

    #654969

    Hi Basilis,

    Customizing the logo works fine, but is it possible to change the link too? I forgot about that.

    Regards
    Poirot

    #654971

    Hey!

    Please add following code to Functions.php file of your child theme in Appearance > Editor

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
    if(is_page(59))
    {
        $link = "http://kriesi.at";
    }
        return $link;
    }

    and change 59 to your page’s ID

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.