I found the following solution on the plugin site. It wasn’t easy to find. It worked. Thanks. I added the custom Java plugin to add the code.
/* Max Mega Menu
* Unhide mobile menu */
jQuery(document).ready(function($) {
$('.mega-menu').parents().show();
$(window).on('resize', function(){
$('.mega-menu').parents().show();
});
});