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?
 

Mark

Administrator
Staff member
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}%'
 

cajkan

Active Member
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
 

Mark

Administrator
Staff member
yes URL is already included in the member search. (username, title, email, url)
 

Basti

Administrator
Staff member
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
 

apexwebgaming

New Member
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...
 

Basti

Administrator
Staff member
Easy enough, linking the username to details page isnt a bad idea i guess.
 
Top