How to include a YouTube video or video widget on the community home page?

Hi,

Since you are using the Right Sidebar Blocks component, you can do the following:

  1. Edit blocks settings
  2. Add a new item
  3. In namecustom-html
  4. In params, you add content and as value you can insert your video HTML:
<video controls preload="metadata" width="100%">
   <source src="your_link_to_the_video_here" />
</video>

For example:

image

From my dev forum:

3 Likes