Hi,
Please insert given below code at functions.php of child theme.
function sf_video_youtube($url, $width = 640, $height = 480) {
preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id);
return '<div class="sf-video-wrap"><iframe itemprop="video" src="http://www.youtube.com/embed/'. $video_id[1] .'?wmode=transparent&showinfo=0&rel=0" width="'. $width .'" height="'. $height .'" ></iframe></div>';
}
function sf_get_embed_src($url) {
if (strpos($url,'youtube')){
preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id);
if (isset($video_id[1])) {
return 'http://www.youtube.com/embed/'. $video_id[1] .'?autoplay=1&wmode=transparent&showinfo=0&rel=0';
}
} else {
preg_match('/http:\/\/vimeo.com\/(\d+)$/', $url, $video_id);
if (isset($video_id[1])) {
return 'http://player.vimeo.com/video/'. $video_id[1] .'?title=0&byline=0&portrait=0&autoplay=1&wmode=transparent';
}
}
}
Thanks ๐
With Best Regards
Mohammad