Home › Forums › Support › Main Navigation Dropdown › Reply To: Main Navigation Dropdown
April 11, 2016 at 8:34 am
#185943
Tom
Lead Developer
Lead Developer
Hi there,
Adding this code into the wp_footer hook in GP Hooks should do the trick:
<script>
jQuery( window ).load( function() {
jQuery( '.sf-menu .menu-item-has-children' ).GenerateDropdownMenu.destroy();
jQuery( '.sf-menu .menu-item-has-children' ).GenerateDropdownMenu({
transition_speed: 0,
open_delay: 0,
close_delay: 0
});
});
</script>
Let me know 🙂