/preview
URL.To embed Google Drive videos in a Webflow CMS Collection list, using unique video URLs pulled from your CMS, you’ll need to format the URLs correctly and use the Embed component. Google Drive links must be transformed from shareable links to embeddable links.
https://drive.google.com/file/d/FILE_ID/view?usp=sharing
https://drive.google.com/file/d/FILE_ID/preview
/d/
and /view
).https://drive.google.com/file/d/1AbcDEFg123456789/view
, copy 1AbcDEFg123456789
.In your Webflow project, go to the CMS Collection Page or Section.
Drag in an Embed widget inside the repeating CMS item.
Paste the following code into the Embed widget:
<iframe src="https://drive.google.com/file/d/{{wf {"path":"drive-video-id","type":"PlainText"} }}" width="640" height="360" allow="autoplay" allowfullscreen loading="lazy"></iframe>
Replace "drive-video-id"
with the actual Field Name slug of your CMS field containing the Google Drive ID.
If you're unsure of the correct CMS binding syntax, use Add Field while editing the Embed component to insert it properly.
To embed Google Drive videos into a Webflow CMS Collection, store only the Google Drive file ID in a CMS field, format the URL using /preview
, and place it inside a dynamic Embed component using Webflow’s CMS binding system. Make sure sharing settings in Google Drive are public.