Para hacer que los vídeos de Youtube no muestren los recomendados al finalizar se debe añadir el siguiente código a la sección Diseño > Personalizar > Incluir HTML en Plantilla del Evento:
<script>
$.fn.ready(function(){
$('body').on('render.handlebars', function (e, section, datos) {
if (section == 'videos') {
setTimeout(function() {
var src = $('iframe#movie-embed').attr('src');
$('iframe#movie-embed').attr('src', src+'&rel=0');
$('.videos-thumbs-list-item').each(function(i) {
var url = $(this).attr('data-url');
$(this).attr('data-url', url+'&rel=0');
});
}, 500);
}
});
});
</script>