Need Help Making Dynamic List Page Titles Clickable

Hey @rashad-qado !

So, when bound to data, the text element won’t be linkable to any page. That being said, it is possible using a little bit of code.

From the sounds of it, here is the code you’ll need:

import wixLocation from 'wix-location';

$w.onReady(function () {
    $w("#datasetID").onReady(() => {
        $w("#repeaterID").onItemReady(($item, itemData, index) => {
            $item("#textID").onClick(() => {
                wixLocation.to(itemData.postPageUrl)
            })
        })
    })
})

Change datasetID to the ID of your dataset
Change repeaterID to the ID of your repeater
And change the textID to the ID of your text element

If you need any more help with the code, I’d recommend reaching out on the Velo forum