collapsing category sub menu for mobile menu title
-
Hello, Im having an issue with my mobile menu I would like the title when clicked to have the drop down submenu collapse instead of having the title directing you to a page. My website is currently on maintance mode so you can not see it.
Attachments:
You must be
logged in to view attached files.
Hello,
Try to create a main menu item with a custom link with “#” instead of URL and add the sub menu item.
Then try to add this code in theme settings > custom js:
jQuery('.mobile-nav').on('click', '.wd-nav-mobile li.menu-item-has-children > a', function(e){
e.preventDefault();
jQuery(this).parent().find('> .wd-nav-opener').click();
});
Best Regards.