Hi,
Try to add the following code snippet to the Custom JS area on a document ready in Theme Settings to do this
jQuery('.mobile-nav').on('click', '.menu-item a:not([href])', function(e) {
e.preventDefault();
jQuery(this).parent().find('>.icon-sub-menu').click();
})
Regards