Tagged: mobile, navigation
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
I want to show the mobile menu by default without klicking the Button !
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