Genesis scripts.
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Enable the superfish script
add_filter( 'genesis_superfish_enabled', '__return_true' );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Disable the superfish script
add_action( 'wp_enqueue_scripts', 'sp_disable_superfish' );
function sp_disable_superfish() {
wp_deregister_script( 'superfish' );
wp_deregister_script( 'superfish-args' );
}