XF 1.3 Youtube video, full screen mode don't work

Allan

Well-known member
Hey all

When i click on Full screen to youtube video, it nothing happens.

I just tried here and yet does it work, where does the problem?
 
My Bbcode video youtube is correct ?

Code:
<object width="500" height="300" data="https://www.youtube.com/v/{$id}&amp;fs=1">
    <param name="movie" value="https://www.youtube.com/v/{$id}&amp;fs=1" />
    <param name="allowFullScreen" value="true" />
    <param name="wmode" value="opaque" />
    <embed src="https://www.youtube.com/v/{$id}&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="opaque" width="500" height="300" />
</object>
 
What is your embed code?

The default code is:
Code:
<iframe width="500" height="300" src="https://www.youtube.com/embed/{$id}?wmode=opaque" frameborder="0" allowfullscreen></iframe>

Edit: Your code is out of date, update it to that above.
 
What is your embed code?

The default code is:
Code:
<iframe width="500" height="300" src="https://www.youtube.com/embed/{$id}?wmode=opaque" frameborder="0" allowfullscreen></iframe>

Edit: Your code is out of date, update it to that above.
Correct, outdated !

Thank you ;)

I thought it was put automatically update when upgrade XenForo.
 
I thought it was put automatically update when upgrade XenForo.
It doesn't update automatically on upgrades because if it did then it would overwrite any changes we've done to the stock definitions (which could be annoying).


EDIT: Ninja'ed by Brogan..... again! :cautious:
 
Top Bottom