I’m trying to do something extremely simple:
I have a repeater displaying data from a CMS collection.
The collection hosts a text field called ‘phone’
I want to set the link for a button in the repeater to tel:${phone}
$w('#repeater').onItemReady(($item, data) => {
console.log('data', data)
$item('#phone').link = 'tel:' + data.phone
})
The log shows all different items and their respective phone properties hold different numbers
For some reason though, the #phone
element links to the same phone number! The last on the list
I know that’s how it’d bug out had I used $w
instead of $item
- Selecting all buttons instead of each item’s button
But I’m using $item
, so this SHOULD work!
I have done this countless times before, I’ve no clue what;s going wrong here
When viewing the live site, it seems Wix crashes with some CORS header errors, don’t know if those are related or not