I have created a member page which, in theory, would be a place for each user to keep track of their work (i.e. a check list). What can I do to ensure that the user’s selections (using a boolean to connect with the database set up) are saved so that when they log back in, all of their checks are maintained. Currently, if the user logs out or even refreshes the page, all buttons are reset to default.
Hi Hacer,
I would suggest you start with the Basic Form example. You can load this into your editor and play with it and modify it. This will help you learn how page elements and database collections work.
Have fun,
Yisrael
I would create a custom member database which is automatically populated on a new user’s login. Then, when a button is clicked, you can update the specific member’s item for a field that relates to that button. You can have this be a boolean. Then in your code you can run a wixData query which allows you to check the value of the item, and you can update hte button accordingly.