Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #895494

    Similar problem as https://kriesi.at/support/topic/burger-menu-does-not-work-if-conditional-menus-plugin-is-used/
    Has worked great in the past. Recently made aware that the burger menu was not displaying on mobile on the pages with a swapped out navigator menu. Burger does appear on root pages that have the root navigator menu.

    Swapped out menu displays perfectly on desktop – but the menu disappears and no burger on mobile.

    Have tried disabling all plugins – no luck.

    Have tried using “Different Menu in Different Pages” pluggin instead of “Menu Swapper” plugin. It didn’t work either.

    #896773

    Any thoughts on this anyone? Would love to come up with a fix for it.

    #897194

    Hi,

    If you switch from your child theme to the main Enfold, does it get fixed?

    Best regards,
    Basilis

    #897327

    Switching to the main Enfold theme has the same results. No burger menu on the pages with the replaced navigator menu.

    #898332

    Hi pb,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #898554
    This reply has been marked as private.
    #900225

    Hi,

    Just to be sure I understand properly, can you please explain what you mean ” with the replaced navigator menu “?
    You are using a third party plugin?

    Best regards,
    Basilis

    #900235

    I’m using “Menu Swapper” plugin to allow a different navigator menu on different pages of the site.

    As stated in the original post – the menu’s work great on desktop/laptop computers – but on mobile devices the burger menu isn’t present.

    It used to work. Not sure when it stopped working.

    Tried reverting to earlier version of WordPress – didn’t fix the problem.

    Have tried using “Different Menu in Different Pages” plugin instead of “menu swapper” plugin – with same results.

    Have tried using Enfold main theme instead of the child theme – same results.

    #901825

    Hi,

    Thank you for the info.

    The mobile menu doesn’t display because the plugin creates a new menu location. We added the following filter in the functions.php file.

    add_filter('avf_append_burger_menu_location', 'avf_append_burger_menu_location_mod', 10, 1);
    function avf_append_burger_menu_location_mod($location) {
    	$location = 'avia';
    	return $location;
    }

    Best regards,
    Ismael

    #1057692

    Hi i’am having the same issue as above: (same plug-in)
    My website: http://dev.poortershuyze.be/poortershuyze/
    Part of the website were it is ok. (Main Enfold menu): http://dev.poortershuyze.be/gout/
    Part of the website with a other “main” menu: http://dev.poortershuyze.be/poortershuyze/

    On that second part of the website I didn’t see the burger-menu, so I added the code that Ismael provided.

    add_filter('avf_append_burger_menu_location', 'avf_append_burger_menu_location_mod', 10, 1);
    function avf_append_burger_menu_location_mod($location) {
    	$location = 'avia';
    	return $location;
    }

    Now the burger-menu appears on both parts of the site. So far so good.
    But no I’m getting 2 burger-menu’s (one at the top of the page and one where it should be . )
    I’m getting this on both parts of the website.
    How can I fix, so burger-menu is shown only once as it should be?

    Thx for support.

    • This reply was modified 5 years, 10 months ago by creatorke.
    #1058178

    Hi creatorke,

    Image 2019-01-24 at 15.12.10.png
    Image 2019-01-24 at 15.12.20.png

    I am seeing only one burger. Did you get it working?

    Could you please attach some screenshots of the issue?

    Best regards,
    Victoria

    #1058215

    No, problem still is there… but I found the specific problem.
    I have 3 menu’s:
    – Menu Poortershuyze
    – Menu Goût (Mainmenu)
    – Topmenu (Secondairy menu) > Placed on small bar above header (with link STARTPAGINA)
    When Secondairy menu is activated, the I have the burger Issue. When secondairy menu is disabled, problem is solved.

    menu poortershuyze
    Menu gout
    Secondairey menu
    menu on wide screen
    Menu on mobile

    • This reply was modified 5 years, 9 months ago by creatorke.
    #1058609

    Hi,

    Did you disable the secondary menu? Please enable it back so that we can inspect the menus. Maybe, we can use css to hide the second one.

    Best regards,
    Ismael

    #1058614

    Hi Ismael,

    I have enabled the secondairy menu (Link on top: Startpage)

    #1059527

    Hi,

    Thanks for the update.

    Use this css code to remove the other mobile menu.

    .responsive #header_meta .sub_menu>ul>li.av-burger-menu-main {
        display: none !important;
    }

    Best regards,
    Ismael

    #1059955

    This fixed it. Thx for your help

    #1060400

    Hi,

    You’re welcome. We’ll close the thread now. Please open a new one if you need anything else.

    Best regards,
    Ismael

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Menu Swapper Not Showing Burger on Mobile’ is closed to new replies.