Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
104 views
in Q2A Core by
is there a way to sort users who register by date ?

1 Answer

0 votes
by

I don't think the users page or the User Manager plugin allow sorting users by registration date. A database query for this is rather simple, though, so maybe try that (if you just want a sorted list of users for your own use).

SELECT * FROM qa_users ORDER BY created;

...