If YouTube is still setting cookies even after enabling Privacy Mode in Webflow and using the "no-cookie" URL (youtube-nocookie.com
), there may be additional factors causing this issue. Here’s how you can troubleshoot and resolve it:
1. Verify the Embed URL
- Ensure the YouTube embed link starts with
https://www.youtube-nocookie.com/
. - In Webflow, when adding a YouTube video, manually update the embed URL and replace
youtube.com
with youtube-nocookie.com
.
2. Enable Webflow's Privacy Mode
- Go to Project Settings > Privacy & Cookies.
- Enable "Use YouTube's privacy-enhanced mode."
- If this setting was already enabled, toggle it off, save, then toggle it on again.
3. Inspect the Embed Code
- If you’re using Webflow’s native YouTube component, switch to an Embed element instead.
- Use the following
iframe
format:
```\`\`\` - Replace
VIDEO_ID
with the actual video ID.
4. Use Lazy Loading
- Add
loading="lazy"
inside the <iframe>
to prevent loading external scripts until the user interacts with the video.
5. Block Third-Party Cookies in the Browser (Testing)
- Open an incognito window and disable tracking cookies from your browser’s settings.
- Right-click the page, select Inspect, go to the Application tab > Cookies, and check if cookies are still being set.
6. Implement a Consent Manager
- If YouTube still drops cookies, installing a cookie consent banner with a consent-based embed trigger (e.g., Cookiebot or Finsweet's Cookie Consent) can help.
- Configure it so that YouTube only loads after user consent.
7. Check for Third-Party Scripts
- Some tracking or advertising scripts may override Webflow’s privacy mode.
- Check if any Google Tag Manager, Facebook Pixel, or third-party scripts are interfering.
Summary
To stop YouTube from setting cookies, verify that you're using youtube-nocookie.com
, enable Webflow's Privacy Mode, and consider using an embed block instead of Webflow’s native YouTube component. If issues persist, implement a cookie consent manager to block embeds until the user accepts cookies.