Yes. I saw the revised version and upgraded the plugin. Everything is working fine. Thanks!
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!