How is it possible to make the following button clicks available after a certain time

qq all
How is it possible to make the following button clicks available after a certain time, for example (1 day).

Do you mean that after clicking a button, disable it until the next day?

Yes, I want it to turn off after clicking until the next day

You can use tinyDB to store last date when the button was clicked, and compare the current date with the stored one to know if the button was already clicked today (then disable it) or not (enable it).

When clicked, disable it and store the current date in tinyDB.

It would be something like this:

Thank you very much, this help is very important to me!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.