Hello
I use this plugin which is great.
I found 2 small issues on function videoembed_youtube_shortener_parse_url:
the parameters of the function are wrong, so the size of the video is always small (as defined in videoembed_calc_size) since the $videowidth parameter wasn't passed.
In some case the video wasn't not displayed, so I changed the line
$videourl = 'youtube.com/v' . $path;
to
$videourl = 'www.youtube.com/embed' . $path;
For your convenience if needed, the below is the function with changed I made:
Hello I use this plugin which is great. I found 2 small issues on function videoembed_youtube_shortener_parse_url:
$videourl = 'youtube.com/v' . $path;
to$videourl = 'www.youtube.com/embed' . $path;
For your convenience if needed, the below is the function with changed I made: