• Hello,

    I am pulling my hair out here with this issue.
    Any help would be greatly appreciated.
    I’ve disabled all plugins, updated permalinks, reinstalled wordpress
    Still nothing.

    Thank you!

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

Viewing 1 replies (of 1 total)
  • Hello,

    It would be best if you can contact the theme support because you are using a premium theme.

    I can also see that you are using a child theme. Try switching to the parent theme, clear cache and try again.

    If nothing, put this JS code in some Custom JS field in your theme.

    window.onload = () => {
        let menuhc = document.getElementsByClassName("menu-item-has-children");
        let menuhcarr = Array.from(menuhc);
        menuhcarr.map(i=>{
    	i.addEventListener("mouseenter",()=>{
                i.firstElementChild.nextElementSibling.style.display = "block";
    	});
        });
    }

    Hope this helps!

    Kind regards,
    Problemizer

Viewing 1 replies (of 1 total)
  • The topic ‘drop down sub menu not working’ is closed to new replies.