Home Forums WoodMart support forum Issues occurring in menu Reply To: Issues occurring in menu

#112890

Artem Temos
Keymaster

Hi,

Try to add the following code snippet to the Custom JS area on document ready in Theme Settings

jQuery('.mobile-nav').on('click', '.site-mobile-menu > li > a', function(e){
	e.preventDefault();
	jQuery(this).parent().find('.icon-sub-menu').click();
});

Regards