That did it! I removed the superfish function call from the header.php file in the theme directory and it fixed the problem.
Thanks Vladimir! Much Appreciated!
Thanks Vladimir for identifying this!
Do you know how to disable superfish in the WP Twenty Twelve theme?
I tried adding the following code to /wp-content/themes/haldeman/functions.php:
function unregister_superfish() {
wp_deregister_script( ‘superfish’ );
wp_deregister_script( ‘superfish-args’ );
}
add_action( ‘wp_enqueue_scripts’, ‘unregister_superfish’ );
as described in this post:
http://www.quickonlinetips.com/archives/2012/10/disable-superfish-scripts-genesis-theme/
But, it still loads on the page.
Thanks again for the help!