@teejay Status field is something in testing process on my way, don’t mind.
Answers on your questions
- . eq ( ‘title’ , ‘Youtube’ ) means that I want to retrieve an item from my Collection, which Title field has Youtube value
After I get an object item from my collection, then I can get any other value of this item. Every item has ‘url’ property with its value, and Youtube item in my collection has ‘htttps://youtube.com’ url value.
check this link and read a description
https://www.wix.com/velo/reference/wix-data/wixdataquery/eq
- In order this code works on your way, you have to use
- your collection name,
- your iFrame editor element’s ID,
- in your specific case you may need to specify dynamically the item properties (name and value) inside eq(‘yourFieldName’, ‘yourFieldValue’)
- your field name (‘url’ in my case) in your collection, that contains fact url.
I’ve underlined for you below in the code snippet all the values that for sure can differ for me and for you.
But please note that is only simple code snippet. The functionality can be much more difficult.

