Unregister Superfish Scripts Unregister the superfish scripts on your site using the Genesis Framework: <?php // Unregister the superfish scripts add_action( 'wp_enqueue_scripts', 'custom_unregister_superfish' ); function custom_unregister_superfish() { wp_deregister_script( 'superfish' ); wp_deregister_script( 'superfish-args' ); }