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 ){
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 ){
UPDATE – Just posted this in the pods github issue queue.
https://github.com/pods-framework/pods/issues/3971
-
This reply was modified 9 years, 7 months ago by signalscott. Reason: typo on github