Hello there. First of all, I wanted to thank you for this great plugin
and for the support that you are offering here.
I was hoping you could help me out with an issue 'm having: I'm trying
to implement Fancybox 2.0.3 on a WP 3.3.1 installation. I can't give
you a link to the site because I'm testing this locally before
implementing it.
Basically, I have created a content filter that turns all video
iframes from this:
<iframe width="100%" height="410" src="
http://www.youtube.com/embed/
tLQiMR91ClI?wmode=opaque" frameborder="0" allowfullscreen></iframe>
To this:
<div class="fancy-video-cont">
<a rel="fancybox" class="fancy-link fancy-video fancybox.iframe"
href="
http://www.youtube.com/embed/tLQiMR91ClI?
wmode=opaque&fs=1&hd=1&autoplay=1">Fancybox Video</a>
<iframe width="100%" height="410" src="
http://www.youtube.com/embed/
tLQiMR91ClI?wmode=opaque" frameborder="0" allowfullscreen>
</iframe>
</div>
That way, when you click in the link "Fancybox Video", the video is
shown inside the Fancybox. That part works great and the video
displays just fine. However, the "hd=1" does not seem to get picked up
since the video does not start playing in HD resolution. However, when
you copy/paste the href attribute of the link in the browser's address
bar, HD works.
Am I doing something wrong or does the plugin not support the display
of embedded videos in HD?