Count Views once per day (logged in and not logged in)

Hey there!
Is it possible to add views on a counter everytime somebody visits a page, but this can only happen once per day? I think I know how this is implemented for logged in users, but is it also possible for not logged in users? By tracking something of the not logged in user probably?
Thanks for help in advance ! :slight_smile:

Probably loads of ways to do it…

But one way would be to just add a Date field to the User datatype to store the date of last visit.

Then, on page load, only add a new view if the existing date of the last visit is not today, and then update that field to the current date/time.

1 Like

This would work fine! Thanks for the Help!
Now I have the problem, that there are many different pages the view should get count on. So if you visit page A the page A count gets + 1 but if you after that visit page B the page B count also should get + 1. I know I could create another list on the user side with visited pages, but i dont want to load up to much values on the user. Do you have an idea how i can solve this without adding another datatype to the user or the site?

Thanks in advance!