This sounds good. But how can I create this custom signup lightbox, to collect the data and tell wix to use that data (like the email) to allow people to sigin ?
In Wix, there is a feature called a lightbox. You can add it and include the fields you want to add. It must have fields for email and password so that the user can signup. In the Wix Velo reference, there is a function (possibly onRegister
) that handles email/password registration.
After that, the data will be saved in the CMS using the .insert
function. Then, you can query the same data and display it on the member page using a repeater. You can also add filters there using .eq
or .contains
.
1 Like