I have one submenu that is not opening on mobile. Works fine on desktop. I tried inserting this code into Theme Options/JS, but this did not help, it actually prevented all menus from opening.
jQuery(function($) {
$(’.x-sub-toggle’).on(‘click touchstart’, function(e) {
e.preventDefault();
$(this).toggleClass(‘x-active’).closest(‘li’).toggleClass(‘x-active’);
});
});