Plugin Author
Baden
(@baden03)
Hey Mav,
The issue is that your theme is force-loading an ancient version of jQuery:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2'></script>
jQuery version 1.4.2 was included with WordPress 3.0 and this plugin requires WordPress 3.3 or higher which included jQuery 1.7.1.
Check your header.php and functions.php file for the above script and rip that trash code out of there! Also, you might write a kind note to the makers of your theme and let them know they need to read this: http://msyk.es/blog/prevent-jquery-wordpress-theme/
Best of luck!
Hello Baden, Thank You this is works. I just delete these 3 row
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js', false, '1.4.4');
wp_enqueue_script('jquery');
in the beginning of my function.php and now works great.
The link which you give was useful for me. Thank you again and have a nice day. 🙂