So I am running into a problem and the other topics do not seem to answer my question:
I have 3 checkbox options on one page, and if the options are checked, and then the button clicked, it brings to user to another page where the elements he/she checked appear as a menu, but I don’t know how to transfer what the user checked to that other page.
If these are settings you want to remember permanently, save these as boolean (yes/no) fields on the User object, for example.
If they are simply transient values, pass them as URL parameters (you can set this up on the first page in the “data to send” section of the Navigate > Go to Page workflow step).
You then retrieve these values on the destination page using “Get Data from Page URL” expression.