Remove related videos from Visual Composer Youtube embeds
//Remove related videos from VC Youtube Embeds
$('.wpb_video_wrapper iframe').each(function(){
var Src = $(this).attr('src');
var newSrc = Src.substring(0, Src.indexOf('?'));
var newSrc = newSrc+'?rel=0';
$(this).attr('src',newSrc);
});