From ec87a14a8d2df4561ee66e25cf49dda59b5eaf48 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Sat, 13 Dec 2014 13:50:23 -0800 Subject: [PATCH] Turn off welcome video by default on Open edX LMS index page --- lms/templates/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lms/templates/index.html b/lms/templates/index.html index 5cf35b2979..f5a5a12586 100644 --- a/lms/templates/index.html +++ b/lms/templates/index.html @@ -9,8 +9,9 @@ <% homepage_overlay_html = microsite.get_value('homepage_overlay_html') - show_homepage_promo_video = microsite.get_value('show_homepage_promo_video', True) - homepage_promo_video_youtube_id = microsite.get_value('homepage_promo_video_youtube_id', "XNaiOGxWeto") + ## To display a welcome video, change False to True, and add a YouTube ID (11 chars, eg "123456789xX") in the following line + show_homepage_promo_video = microsite.get_value('show_homepage_promo_video', False) + homepage_promo_video_youtube_id = microsite.get_value('homepage_promo_video_youtube_id', "your-youtube-id") show_partners = microsite.get_value('show_partners', True)