New Users who have never logged in are hidden from Users List
-
It would appear that new users who have never logged in are hidden from Users List in the backend, including when you search.
This is the query that I discovered with
SELECT SQL_CALC_FOUND_ROWS wp_users.ID
FROM wp_users
INNER JOIN wp_usermeta
ON ( wp_users.ID = wp_usermeta.user_id )
WHERE 1=1
AND ( wp_usermeta.meta_key = ‘wfls-last-login’ )
AND (user_email LIKE ‘%[email protected]%’
OR display_name LIKE ‘%[email protected]%’)
ORDER BY wp_usermeta.meta_value DESC
LIMIT 0, 20;`
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘New Users who have never logged in are hidden from Users List’ is closed to new replies.