Restricting users to a daily limit

Is there any way within bubble to restrict users to interacting a certain amount within a period of time? For example, could I have a user only be able to click a button once a day?

Yeah, you can just save a number on the current user, and increment it each time the user interacts with the site. The way iā€™d do it here is by having two fields:

  • current day, so that you can check if the day has changed
  • current day count, that you increment and check to limit if needed.
1 Like