Implemented Search for member using email

apexwebgaming

New Member
I've been doing this a lot.. how do we search using email??

Right now, there isn't a good way to find a user. I'm trying to clean up the list using bounced emails. Can you update the core to do this?
 
this will be added to 1.0, thanks!

if anyone wants to add this now

open sources/admin/manage.php and find (line 38):
PHP:
OR title LIKE '%{$search_name_sql}%'

replace with:

PHP:
OR title LIKE '%{$search_name_sql}%' OR email LIKE '%{$search_name_sql}%'
 
Was thinking about this feature, also are we able to search domain names?

If someone update their domain, new screenshot appears and we can only see domain name and not usernames, so i think would be cool if thats added too.

Thanks
 
Just as a note, new hooks has been added to the part which mark pointed out. That allows to include new search fields via plugin
 
Would be nice to be able to click on a link that'll take me to the user's details page. Right now, I need to copy the user name and go to the site to access the details page...
 
Back
Top