How to show a popup on bubble only once to a non-logged in user

Good afternoon bubblers,

I was wondering if anyone had any experience with using session info or some other type of info to keep track of users across pages? I would like to show a user a popup prompting them to signup for my app after they’ve been using the site for a period of time, but only once per user. I’ve done a simple “on page load if user is not logged in -> schedule a custom event after X seconds -> Show popup” workflow, but if a user moves around pages it will reset this, potentially showing it to a user multiple times.

Does bubble even support this type of tracking?

Current user exists even when the user is not logged in so you can update current user with a flag like shownpopup = yes. Check this on your page load workflow - use it as a constraint on your show popup - so only show if shownpopup = no, if it shows update current user - change shownpopup to be yes.

That should work

Simon

1 Like

Thanks!

This topic was automatically closed after 70 days. New replies are no longer allowed.