HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u106391720 (10342218)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/34/d890102484/htdocs/wp-content/plugins/megamenu/integration/zerif/functions.php
<?php

/**
 * Zerif binds smoothscroll events to the top level menu items. Stop MMM from unbinding these events.
 */
if ( ! function_exists('megamenu_dont_unbind_menu_events') ) {
    function megamenu_dont_unbind_menu_events($attributes, $menu_id, $menu_settings, $settings, $current_theme_location) {

        $attributes['data-unbind'] = "false";

        return $attributes;
    }
}
add_filter("megamenu_wrap_attributes", "megamenu_dont_unbind_menu_events", 11, 5);