Hello everyone,
I have wordpress 3.0.1
with the lastest (1.5.5) NexGen Gallery plugin which is perfectly working.
I am trying to use the Galleryview plugin as in
http://nextgen-gallery.com/templates/galleryview ,
dowloading it from
http://nextgen-gallery.googlecode.com/files/nggGalleryview.zip
and unzipping it into nexgen gallery plugin dir.
It looks like there's a Jquery mismatch:
If I enable jquery with
wp_enqueue_script('jquery');
I get version 1.4 while the plugin seems to require 1.2
I also tried manually downgrading , by putting a 1.2 into the dir and with
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("/wp-content/plugins/nextgen-gallery/jquery-1.2.6.pack.js"), false, '');
wp_enqueue_script('jquery');
}
But nothing works as well...
has anyone any hint?
Thanks