Show members with less than 1 post (0 posts)

Darfuria

Active member
How can I go about filtering the members of my forum to those who've never posted? On the "Search for Users" page, I can only filter by "message count is at least...", and at least 0 is obviously everybody.
 
I don't see a way to do this in the current software. But you can always run a query on your database to fetch the records:

Code:
SELECT username
FROM xf_user
WHERE message_count = 0

You can run queries in phpmyadmin. Many hosts preinstall this program for you.
 
Top Bottom