Hello,
Unfortunately, this is not available out of the Box! But this is definitely possible! Please add the following CSS Code:
.current-parent {
display: block !important;
opacity: 1 !important;
height: auto !important;
}
and then add the following JS Code at the bottom of the Page after the js/functions.js JS File Linking:
jQuery('#primary-menu').find('.current').parents('ul').addClass('current-parent');
Now you can simply add the .current Class to the Sub Menu Item you want to display as active. This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.