Hi Juli9774,
It looks like the issue is your theme is loading jQuery twice. This is usually a result of outputting scripts directly in your theme header instead of enqueueing the scripts. By enqueing the scripts, WP will ensure that each script is only loaded once and by setting the script dependencies (aka which scripts need which scripts to function properly) WP will also ensure that the scripts are output in the correct order.
http://grab.by/ahdv - Note the two instances of jQuery, one highlighted and one near the top of the included scripts.
For more information on enqueueing scripts, read here:
http://codex.wordpress.org/Function_Reference/wp_enqueue_script
Posted 13 years ago on Friday June 3, 2011 |
Permalink