Hello Chris,
what do I have to do to be able to embed a YouTube video on a phpBB3-PAGES page or Forum in a DSGVO-compliant way?
3.0.0
https://www.phpbb.com/customise/db/extension/pages/
PAGES / Forum - YouTube - Opt-In Cookie Manager
PAGES / Forum - YouTube
Wer nichts weiß, muss alles glauben.
Marie von Ebner-Eschenbach
Marie von Ebner-Eschenbach
-
- Registered User
- Posts: 82
- Joined: Mon May 07, 2018 12:23 pm
Re: PAGES / Forum - YouTube
If possible, embed the videos on the site with BBCode. If you use the existing BBcode this should also be compatible with the Opt in Extension.
-
- Jr. Extension Validator
- Posts: 493
- Joined: Thu Mar 14, 2019 6:07 pm
Re: PAGES / Forum - YouTube
I use Pages only with HTML and CSS. I currently embed videos like this:
<div class="pages-content embed-container">
<iframe
src="https://www.youtube.com/embed/XXXXXX"
width="xxx"
height="xxx"
AllowFullScreen>
</iframe>
</div>
What do I need to change?
<div class="pages-content embed-container">
<iframe
src="https://www.youtube.com/embed/XXXXXX"
width="xxx"
height="xxx"
AllowFullScreen>
</iframe>
</div>
What do I need to change?
Wer nichts weiß, muss alles glauben.
Marie von Ebner-Eschenbach
Marie von Ebner-Eschenbach
-
- Registered User
- Posts: 82
- Joined: Mon May 07, 2018 12:23 pm
Re: PAGES / Forum - YouTube
If this your code:
You can testing follow:
Code: Select all
<div class="pages-content embed-container">
<iframe
src="https://www.youtube.com/embed/XXXXXX"
width="xxx"
height="xxx"
AllowFullScreen>
</iframe>
</div>
Code: Select all
<div class="pages-content embed-container">
<iframe data-name="youtube" data-src="https://www.youtube.com/embed/XXXXXX"
width="xxx"
height="xxx"
AllowFullScreen>
</iframe>
</div>
-
- Jr. Extension Validator
- Posts: 493
- Joined: Thu Mar 14, 2019 6:07 pm