I’ve a View displaying users of my website.
how can i remove the user Anonymous from my View ?
i.e.
35
author
16
voter
0
Anonymous
0
user34
I’ve tried with a filter “User:Name != Anonymous” but it doesn’t work.
This is how the added filter looks like: “User: Name not in Unknown”
thanks
If you don’t have user 0 in your database, then that’s the cause of the problem. To fix it you need to run two queries.
(this is for MySQL).
For your special case with the empty user with uid you can run:
That should fix your problems. Could be your db version didn’t support
last_insert_id().