Allow sub menus to remain visible when page background is clicked
By default, when the page background is clicked, any open sub menus will be automatically closed. To prevent this behaviour (and keep sub menus open), add the following to your themes functions.php file:
1 2 3 4 5 |
function megamenu_disable_document_click($attributes, $menu_id, $menu_settings, $settings, $current_theme_location) { $attributes['data-document-click'] = 'disabled'; return $attributes; } add_filter('megamenu_wrap_attributes', 'megamenu_disable_document_click', 10, 5); |