What doesn’t work? Do you get any errors? Can you activate it?
Which version of the plugin are you using?
I tested it in WP 3.05, and it worked just fine.
Please upgrade to the newest version of WordPress, 3.1.1. I’ve tested that version as well.
Kezze,
I also had an issue with getting the plugin to work.
When I viewed the source code on my WordPress site, I noticed a deprecation warning at the beginning of the generated JavaScript.
get_settings is deprecated since version 2.1! Use get_option() instead.
I just changed
$blogdomain = parse_url(get_settings(‘home’));
to
$blogdomain = parse_url(get_option(‘home’)); and everything seems to work fine now.
Thanks!
Thanks a lot, boo1865 – I’ll implement the change in the upcoming release.
I released the revised version, but forgot to post it here.
I suppose that it no longer causes a warning for you?
Yes. I saw the revised version and upgraded the plugin. Everything is working fine. Thanks!