Plugin Author
Eric
(@emartin24)
Are you using wp_enqueue_script() to load jQuery? If not, you should be…doing so will solve your problem. wp_enqueue_script() is the correct way to load scripts and allows WordPress to manage which scripts have been loaded and prevent duplicates.
See:
http://www.ericmmartin.com/5-tips-for-using-jquery-with-wordpress/
http://codex.ww.wp.xz.cn/Function_Reference/wp_enqueue_script
Actually, I prefer to load it straight from google CDN for speed and bandwidth, plus most people have this already in their browser cache.
It would be awesome to have a option to disable it in the panel. What part of the code do I need to edit to have a fix for now?
Thanks for the great plugin.
Plugin Author
Eric
(@emartin24)
Did you read the first article I provided?
You can load it from Google’s CDN, but you *need* to use the correct way of loading scripts in WordPress.
Oh sorry, I feel like a fool. Thanks a lot.