Youtube insists on showing other video images at the end of my video..why?

Hi all,

my site is here: http://www.solidasalock.co.uk/

I have a youtube video on the home page which insists on showing other suggested videos once it’s finished playing, even though in the Youtube settings I didn’t have that option ticked.

The html code I currently have in is as follows (see pic attached)

How can I ensure that no other videos pop up once this video is over?

Many thanks for your help.

Add ?rel=0 at the end of the YouTube URL :smile:

—N

4 Likes

Would it look like this?

where you have:

<iframe src='https://www.youtube.com/embed/oyNdbEX_AYE'

Should read:

<iframe src='https://www.youtube.com/embed/oyNdbEX_AYE?rel=0'

The <?rel=0> is not a valid tag, but a parameter passed to the YT URL.

1 Like

Brilliant, worked like a charm, thank you so much :-).