Hi,
This plugin has not been updated for over 3 years. I recommend you find a different plugin unfortunately.
Thank you
Thread Starter
Delfos
(@delfos)
How can I Migrate my current galleries to the new plugin with the same structure. I have over 2500 photos as part of the current gallery
There is an outdated jQuery call to .live() in this js file.
/wp-content/plugins/simple-photo-gallery/js/wppg_media_uploader.js
Line 15
Change
jQuery('.wppg_upload_image_button').live('click', function( event ){
To
jQuery('.wppg_upload_image_button').on('click', function( event ){
Thread Starter
Delfos
(@delfos)
Hi @signalscott
Thx for your response, but I am not sure how to change it. Are you able to guide me via screenshots?
Hi @delfos,
This forum doesn’t allow screenshots. As I mentioned above, find the (wppg_media_uploader.js) file in the Simple Photo Gallery plugin.
It should be here: /wp-content/plugins/simple-photo-gallery/js/wppg_media_uploader.js
Edit line 15 in wppg_media_uploader.js
Line 15 should be the following:
jQuery('.wppg_upload_image_button').live('click', function( event ){
Replace that line with the following:
jQuery('.wppg_upload_image_button').on('click', function( event ){
Thread Starter
Delfos
(@delfos)
Thx, changing this line of code still does not work, i can create a new Gallery but i cannot add photos to it