• Resolved diogofran

    (@diogofran)


    Since the plugin was upgrades, my images are not displayed, I can’t choose the thumbnail, and all the label changes I have made disappeared. This turned my life into a mess, because I was just releasing my page and don′t know what to do.

    HELP!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    It seems there is some conflicting JavaScript, what you would need to do is open file wpadverts/assetst/js/adverts-single.js go to line 105 and change line

    
    this.Items[i].hide();
    

    to

    
    this.Items[parseInt(i)].hide();
    

    You should be able to all of this from wp-admin / Appearance / Editor panel. The same update will be in next WPAdverts release.

    Thread Starter diogofran

    (@diogofran)

    I did it, but it didn′t work. It shows for half a second and then hides the images when I load the page.

    Plugin Author Greg Winiarski

    (@gwin)

    Sorry, one more update will be needed, the (hopefully) final adverts-single.js file you can find here https://github.com/simpliko/wpadverts/blob/master/assets/js/adverts-single.js, basically i further changed the line

    
    this.Items[parseInt(i)].hide();
    

    to

    
    if(typeof this.Items[parseInt(i)] === "object" && typeof this.Items[parseInt(i)].hide === "function") {
        this.Items[parseInt(i)].hide();
    }
    

    If this will not help then you can for a while switch to alternative gallery display in wp-admin / Classifieds / Options / Core / Gallery panel.

    Thread Starter diogofran

    (@diogofran)

    Solved!! Thank you so much!!!

    Plugin Author Greg Winiarski

    (@gwin)

    Ok great :), i am closing this thread then.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘After upgrading the pictures are not showing and can’t select thumbnail’ is closed to new replies.