I installed the plugin and activated it. After that i can see the button "uplaod image" of the simple-gallery. After clicking the button nothing happend. Did not the plugin working with wp-version 3.1? Can someone help me please or tell me a plugin that works like the simple gallery? Thanks, Uwest
http://wordpress.org/extend/plugins/wp-simple-galleries/
Matthew McConnell
Member
Plugin Author
Posted 1 year ago #
Hey
Are there any javascript errors happening? It maybe possible that another plugin is interfering with the gallery
Maca134
Hi,
The plugin is clean and simple. Thank you. I've installed it on 2 different projects and I get this js error after clicking 'Insert into Post' on an image in the Media Library:
$(html).find("img").attr("class") is undefined
Line 22 of wp-simple-gallery-admin.js version 1.22. Looks like the class 'wp-image-[#] can't be found. I've deactivated all other plugins to isolate. This happens when using both the older and newer image uploaders in WP. Any help is appreciated.
Thanks
Hi,
Apparently, it's the find("img") that's looking for non-existing descendent elements and returning undefined. Changing
var imageid = jQuery(html).find('img').attr('class').match(/wp\-image\-([0-9]+)/)[1];
to
var imageid = jQuery(html).attr('class').match(/wp\-image\-([0-9]+)/)[1];
seems to solve the problem.
Matthew McConnell
Member
Plugin Author
Posted 1 year ago #
Hey
Thanks for the correction will get it tested and will update the plugin asap
Cheers again
Maca134