user2045095
user2045095

Reputation: 21

Why do the buttons users could click at the end of embedded YT videos not appearing?

Only the subscribe button appears at the end (along with a display of how many likes/dislikes checked direct on YT). Is there an embed code to get these back so users can vote on my site?

Sample embed code:

<object style="height: 360px; width: 640px">
<param name="movie" value="http://www.youtube.com/v/XXXXXXXXXXXXX?version=3&controls=1&autohide=1&modestbranding=1&rel=0&autoplay=1&showinfo=0&showsearch=0&iv_load_policy=3&border=2&color1=0xB24D7E&color2=0xfff0f5&fs=1&hd=0&feature=player_embedded" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="allownetworking" value="internal" /><embed src="http://www.youtube.com/v/XXXXXXXXXXXX?version=3&controls=1&autohide=1&modestbranding=1&rel=0&autoplay=1&showinfo=0&showsearch=0&iv_load_policy=3&border=2&color1=0xB24D7E&color2=0xfff0f5&fs=1&hd=0&feature=player_embedded" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" wmode="transparent" allownetworking="internal" width="640" height="360"></embed></object>

Upvotes: 2

Views: 1030

Answers (1)

林果皞
林果皞

Reputation: 7793

name="allowScriptAccess" value="always"> src="http://www.youtube.com/v/_Acr-FWRWXE&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true"
allowScriptAccess="always" width="640" height="360">

As you can see, no question mark ? inside http://www.youtube.com/v/_Acr-FWRWXE&hl=en_US&feature=player_embedded&version=3 , thats means its still version 2, you shoud change to http://www.youtube.com/v/_Acr-FWRWXE?hl=en_US&feature=player_embedded&version=3 instead.

  • IFrame embed. Using www.youtube.com/embed/a6_AHH-A0ks

Hope this help :)

Upvotes: 0

Related Questions