i’m trying to add screen ( group) that will only appear when it is the first visit for the user. even if the user is not signed up? so basically, i want to modify the cookies not the database.
How to do this?
Something like this:
thanks
i’m trying to add screen ( group) that will only appear when it is the first visit for the user. even if the user is not signed up? so basically, i want to modify the cookies not the database.
How to do this?
Something like this:
You can create a field Yes/No in User DB. And update current user. When user is not logged in, this update will be store in cookie. However, Cookie have a limited lifetime (3 days I believe).
You can also consider using your own cookie script instead.