Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Matthew McConnell

    (@maca134)

    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.

    Plugin Author Matthew McConnell

    (@maca134)

    Hey
    Thanks for the correction will get it tested and will update the plugin asap

    Cheers again
    Maca134

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Simple Galleries] wp-simple-gallries-button without function’ is closed to new replies.