• We’re running the WordPress site on version 5.9.8. with a custom theme. I noticed yesterday that the main navigation menu doesn’t open in mobile (Android). When I test with different devices on an online mobile simulator, it seems to be working fine.

    I recently updated some of our third-party plugins but couldn’t think of one that would affect the menu. No other changes have been made on the site recently. Please advice!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi, check your browser console, you’ll see a javascript error : missing the JQuery library.

    A solution might be to request this dependencies in your theme functions.php :

    function enqueue_jquery() {
       wp_enqueue_script('jquery');
    }
    
    add_action('wp_enqueue_scripts', 'enqueue_jquery');

    Cheers

    • This reply was modified 1 year, 5 months ago by ezoulou.
Viewing 1 replies (of 1 total)
  • The topic ‘Hamburger menu suddenly not working on mobile’ is closed to new replies.