Hey @statsportsgames !
To send data between pages, there’s a couple of ways of achieving it - session storage; databases; params.
The problem you’re facing is the text is linked directly on the element rather than via code.
You’d need to use the wixLocation to() API to navigate to the page - to - Velo API Reference - Wix.com
Something like
$w("#button").onClick(() => {
session.setItem("key", "value");
wixLocation.to("/page")
})
The Velo forum or Velo Discord might be a good alternative for code help