XF 1.2 Discouraged Users

Eoj Nawoh

Active member
Hello,

Recently I discovered that a user had accidentally been discouraged by an admin. So I was wondering, is there any way to search for a Discouraged user?

Things like Banned, Not banned, Verified, Unverified are in the search options, could the same be done for Discouraged?

(I didn't know if this existed and I was just missing it, so I didn't want to put it in requests.)
 
It's not possible in the ACP.
You can do it with a query though:
Code:
SELECT user_id FROM `xf_user_option` WHERE is_discouraged = 1
 
Top Bottom