Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #349485

    Hey,

    for a very special customer i want to disable the Mobile Menue an show the Normal Navigation instead.

    The Adress is 89.163.224.126

    #349513

    I want to show the mobile menu by default without klicking the Button !

    #349873

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$("#advanced_menu_toggle").trigger("click");
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

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