Dear mediafluent.
If you want that the video plays right away then find the Widget.php file. After 8806 lines add this code
jQuery(document).ready(function(){
function RIch_Web_SVS_Play_Video(VSlider_ID, Rich_Web_SVS_AP)
{
jQuery(‘.RichWeb_SVS_’+VSlider_ID+’ iframe’).css(‘z-index’,’30’);
jQuery(‘.RichWeb_SVS_’+VSlider_ID+’ .Rich_Web_VSlider_SVS_PlayIcon’).fadeOut();
jQuery(‘#Rich_Web_VS_SVS_’+VSlider_ID+’ a’).each(function(){
if(jQuery(this).hasClass(‘iis-current-slide’) && Rich_Web_SVS_AP==”on”)
{
jQuery(‘.RichWeb_SVS_’+VSlider_ID+’ iframe’).attr(‘src’,jQuery(this).attr(‘data-src-2x’)+’?autoplay=1&mute=1&enablejsapi=1′);
}
if(jQuery(this).hasClass(‘iis-current-slide’) && Rich_Web_SVS_AP==” “){
jQuery(‘.RichWeb_SVS_’+VSlider_ID+’ iframe’).attr(‘src’,jQuery(this).attr(‘data-src-2x’)+’?&rel=0&’);
}
})
}
if(‘<?php echo $Rich_Web_VSlider_Eff[0]->Rich_Web_SVS_AP;?>’==”on”){
RIch_Web_SVS_Play_Video(<?php echo $Rich_Web_Video?>, ‘on’);
}
if(‘<?php echo $Rich_Web_VSlider_Eff[0]->Rich_Web_SVS_AP;?>’==” “){
RIch_Web_SVS_Play_Video(<?php echo $Rich_Web_Video?>, ‘ ‘);
}
});
Thank You.