need jquery help
Trim your above code down to.. <?php wp_enqueue_script( “my_script”, plugins_url( ‘/your-script-name.js’, __FILE__ ), array( ‘jquery’ ) ); ?> <?php wp_head(); ?> <?php woo_head(); ?> Place your jQuery into a JS file, then enqueue it with jQuery as a dependancy(as above), this will ensure jQuery is loaded before your script is. Your script also needs to … Read more