I can’t seem to figure out how to make a Welcome Series display only when the user logs in for the first time. I tried use the “sometimes” happens option in the link, but it’s not working.
On the signup form (this is where your users signup to login to your app), add a action to update the logged in-user number property to 0 (you need to add the 0 because Adalo starts the property off as empty so if you just add one it’ll be 0 so you need to add 0) Then, you add another action to add +1 to the loggedintimes.
And now, there is another update property to set the LoggedInTimes to 0, because we don’t want to show the user the welcome text since they already logged in.
You can just have a true false called HasAccount? and update the user to True when they press a button on the last onboarding screen to go to the home screen. Then set the home screen to be the landing when the user HasAccount is true