Hello,
Thanks for reporting this. This appears to be a Bug. Please find the following code in the js/functions.js File inside the miscFunctions: function() Function Block:
[ch_pre]if (!$(event.target).closest('.primary-menu.mobile-menu-off-canvas .menu-container').length) {
primaryMenu.filter('.mobile-menu-off-canvas').find('.menu-container').toggleClass('d-block', false);
$body.toggleClass("primary-menu-open", false);
}[/ch_pre]
and replace it with:
[ch_pre]if( primaryMenu.hasClass('mobile-menu-off-canvas') ) {
if (!$(event.target).closest('.primary-menu.mobile-menu-off-canvas .menu-container').length) {
primaryMenu.filter('.mobile-menu-off-canvas').find('.menu-container').toggleClass('d-block', false);
$body.toggleClass("primary-menu-open", false);
}
}[/ch_pre]
This will definitely fix the issue. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.