• Drop down menus will not work on desktop using Chrome, Safari or MS Edge browsers. Mobile seems fine. Any help would be appreciated as I am not savvy at making backend or code changes. I am only familiar with making content updates :/

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • anonymized-17844177

    (@anonymized-17844177)

    krisstapleton, hi.

    You need to fix a couple of errors like this: Uncaught ReferenceError: jQuery is not defined. AFAIK this error caused by outdated jQuery in the Cherry Framework, so basically you need to disable it (try this code in the functions.php file of your theme):

    add_action('wp_enqueue_scripts', 'update_jquery_for_cherry_framework', 11);
    function update_jquery_for_cherry_framework() {
       wp_deregister_script('jquery');
       wp_register_script('jquery', '/wp-includes/js/jquery/jquery.js', false, false, true);
       wp_enqueue_script('jquery');
    }

    Hello,

    => Dropdown menus will not work on the desktop because you create different menus for desktop and mobile. See into the screenshots,
    For desktop: [https://prntscr.com/rnrkmw]
    For mobile: [https://prntscr.com/rnrlhg].

    => Assign sub-menus for desktop menu from Dashboard Main Menu > Appearance > Menus > Select your homepage menu > Assign sub-menu > Save Menu.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Drop down menus won’t work on desktop’ is closed to new replies.