Collapsible mobile menu is not hidden when choosing option

Home Support Business Point Collapsible mobile menu is not hidden when choosing option

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #15359
    Anonymous
    Inactive

    Hi!
    When I’m viewing from the mobile, clicking on the menu (the 3 lines) shows the options and when choosing one, it goes to the corresponding section but the menu remains open.
    How do I get it to close automatically when I select an option?

    Thanks in advance.

    #15469
    nirav
    Keymaster

    Hello There!

    Hope you are doing good!

    We are not able to find the mentione issue in our demo. Could you please share with us the webstie URL here or you can mail us at [email protected]. It will help us the check the issue in detial.

    Have a great day ahead!

    Thanks and Regards,
    Team ProDesigns

    #15614
    Anonymous
    Inactive

    Hi!

    The webstie URL is sanitariospanarisi1.000webhostapp.com

    When I’m viewing from the mobile, clicking on the menu (the 3 lines) shows the options (INICIO – PRODUCTOS – SOBRE NOSOTROS – CONTACTO) and when choosing one (e.g. PRODUCTOS), it goes to the corresponding section but the menu remains open. I want the menu close automatically when i choose te option.

    #15779
    nirav
    Keymaster

    Hello THere!

    Hope you are doing good!

    Theme is not designed for one page navigation however you can archive your requirement by adding below code to functions.php file

    function myfunc_add_extra_script(){
        echo '<script>
        jQuery(document).on("click", "#primary-menu a", function(){
       	 jQuery(".meanmenu-reveal").trigger("click");
        });
        </script>';
    }
    add_action('wp_footer', 'myfunc_add_extra_script', 20);

    We recommended to create child theme and add above code in functions file.

    Have a great day ahead!

    Thanks and Regards,
    Team ProDesigns

    #15791
    Anonymous
    Inactive

    It works! Thank you so much for the help and response

    #15935
    nirav
    Keymaster

    Hello There!

    We are glad that issue got resolved.

    Have a great day ahead!

    Thanks and Regards,
    Team ProDesigns

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