Thank you for your help. I searched the forum for a long time but I couldn’t find anything that matched the issue, so that’s why I ended up adding a question.
I’ve added that id string to the button link URL in the way I’ve interpreted what that means (shown below) the link reads: https://www.georgianbaysportsclub.com/programs?id=a52acb4f-fe66-4016-8a35-a4da2dd7a5b9
Then in the 2nd page I have added the following to the code:
$w("#programsDataset").onReady( () => {
let itemId = wixLocation.query.id;
$w("#programsRepeater").forItems( [itemId], ($item, itemData, index) => {
$item("#deatailsContainer").scrollTo();
})
})
When I click the button it takes me to the right page and scrolls down to where it seems the #detailsContainer would be positioned, but the container is not expanding and therefore it’s not showing the content that I need it to show.
