Reply To: Mobile menu above header

Home Forums Support Mobile menu above header Reply To: Mobile menu above header

Home Forums Support Mobile menu above header Reply To: Mobile menu above header

#206460
Tom
Lead Developer
Lead Developer

To remove that script, you need to do this:

add_action( 'wp_enqueue_scripts', 'generate_remove_scripts' );
function generate_remove_scripts() 
{
    wp_dequeue_script( 'generate-move-navigation' );
}