I have problem too. How we do fix it?
I am receiving the same exact errors. Please advise.
Same here! Need this resolved quickly!
I had the same problem. Since there are lots of problems with this plugin I changed for this: https://wordpress.org/plugins/wp-youtube-lyte/
it took me a moment to migrate but i hope I won’t have any problems with my youtube videos showing on my page.
Result of migration is here (from dashboard youy can change size of players for even smaller): http://techtutor.pl/kurs-autocad/
I have problem too. How we do fix it? Help, Help, Help !!!!
I have problem too. Please update this plugin.
I got this problem too. HELP!
Same problem since yesterday here too π
Happened to me too yesterday. The reason it doesn’t work anymore is because YouTube API v2 has been discontinued and this plugin relied on it. You can see that by going to an old API link: http://gdata.youtube.com/feeds/api/videos/_4RQD2SxDOI
In order to make it work correctly you’ll need to:
- open
/wp_content/plugins/youtube_simplegallery.php
- delete the function that starts on line 58 (yotube_gallery_getYouTubeDataFromID)
- add this one instead:
function yotube_gallery_getYouTubeDataFromID($vID) {
$videodata = wp_remote_fopen('https://www.googleapis.com/youtube/v3/videos?id='.trim($vID).'&key=AIzaSyA6oW5D-ZlSIG-OHSBOR25TMd3YDRU7HdU&part=snippet,contentDetails,statistics,status');
if($videodata=='Video not found') {
return 'error';
}
else {
$videodata = json_decode($videodata,true);
return $videodata;
}
}
Good luck to you all! π
thank you, jaruba … it worked for me!
Hi Jaruba,
Thank you for your support.
I have a problem still,
Warning: Division by zero in /wp-content/plugins/youtube-simplegallery/inc/shortcode.php on line 238
how we do fix that?
——————————
I fixed it. I changed column settings at Thumbnails section, than plugin worked.
Thank you again π
THX jaruba It’s work. π
I also had this problem. Thanks jaruba!!! π
Same here… it didn’t work, but jaruba’s fix made it all good again. Big Thanks jaruba.