Hi,
When I click on a parent menu, is it possible to display the submenu (dropdown) without actually going to the parent page from the menu ?
Hey @baysquentin,
You can do so by adding this code in X > Theme Options > JS:

(function($){
$('.x-navbar .mobile .x-nav li.menu-item-has-children > a').on( 'click', function(e) {
e.preventDefault();
$(this).children('.x-sub-toggle').get(0).click();;
});
})(jQuery);
Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Hope this helps.
Great !
Thanks.
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.