jQuery(document).ready(function($) { // Listen for Premium Addons modal open event $(document).on('premium_modal_opened', function() { // Reinitialize EAEL Advanced Menu if (typeof window.EAELAdvancedMenuHandler !== 'undefined') { $('.eael-advanced-menu-container').each(function() { new window.EAELAdvancedMenuHandler($(this)); }); } }); // Also try on generic modal events $(document).on('shown.bs.modal', '.premium-modal-box-modal', function() { if (typeof window.EAELAdvancedMenuHandler !== 'undefined') { $('.eael-advanced-menu-container').each(function() { new window.EAELAdvancedMenuHandler($(this)); }); } }); });