Outdated Version of jQuery in Wordpress -
i have plugin in wordpress (easy-fancy-box), think adding in wp header. <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js?ver=1.6.4'></script>
this version outdated , preventing me using newer versions of jquery, (if add version 1.8 of jquery, fancy box plugin fails. there way update version easy-fancy-box uses?
i have tried searching in plugin files, cannot locate on order change newer version
are sure not or plugin adding jquery?
i had @ plugin linked to, , calls jquery registered in wordpress.
example line 402 in easy-fancybox.php
:
wp_enqueue_script('jquery.fancybox', plugins_url(fancybox_subdir.'/fancybox/jquery.fancybox-'.fancybox_version.'.pack.js', __file__), array('jquery'), fancybox_version);
jquery loaded dependency in that.
look in theme if deregistered jquery (using wp_deregister_script('jquery')
)and registered again use google's cdn.
Comments
Post a Comment