Trying to link search results to dynamic ITEM page

Hey Cynthia,

Since you are filling the table with code, you need to add an event handler for cell click - here the instructions how to do it - https://www.wix.com/code/reference/$w.Table.html#onCellSelect
Inside handler function you will get cell data, and could use this data to navigate user to a specific page. For example if your dynamic page url look like ‘/products/white-box’, you need to take ‘white-box’ from cell data as an ID, like this:

wixLocation.to("/products/" + event.cellData);

For static tables (data from dataset, without coding) you could use linking to dynamic page functionality in Connect Settings of Results Table, here is instruction how do it - Working with the Connect Table Panel | Help Center | Wix.com