Hi Melissa,
I can see the problem right away – for some reason jQuery is not being loaded. This is odd, because the enqueue function is in the plugin at line 339 and is working everywhere I’ve tried it. Can you deactivate and delete the plugin, and re-install it?
One other thing that should work as a quick fix is to add this:
if (!is_admin){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2', false);
wp_enqueue_script('jquery');
}
to the functions.php file in your theme directory. It shouldn’t be necessary, but it should force jQuery to load.
Cheers,
Dalton
Just deactivated, deleted, reinstalled and reactivated; no change.
Add it anywhere in the functions.php?
Yeah, you should be able to add it right at the end, before the closing ?>
Added! Still nothing. Hrm.
OK, I’m out of ideas. If you feel comfortable sending me your WP login information I can take a look. portfolio@daltonrooney.com
I’m sure I’ve screwed something up somewhere. My whole WP is a bit of a mess. π
Sent.
Shoot! It’s a bug in the latest version. The correct code should be:
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2', false);
wp_enqueue_script('jquery');
}
If you add that to your functions.php you should be back in business, and I’ll update the plugin ASAP.
Dalton
Huzzah! It works. Thank you very much. π
Woohoo!
Your site looks great, by the way. Very nice work…
Dalton
Thanks. The CSS is a bit of a hacked-together mess (I learned as I went along), but it’s doing the job!
And thank you very much for both making a great plugin, and for responding so quickly to cries for help. π It is much appreciated.
‘Portfolio Slideshow’ should work with WP 3.0.2, right?
Yeah, I checked the changelog audits very minor update – everything should workfine. Done upgrade to 3.1 when it comes out until I have a chance to test, though! π
All still works. Thank you! π