Can the search box for group members do more than finding member usernames?
Suggestions
Currently the only fields that are searched on are
* user_name
* profile_name
And the only way to customize that is to setup a listener on 'db_search_params' and add in the field you want to search for into the search event.
--
In your custom module something like this
function xxYourModule_db_search_params_listener($_data, $_user, $_conf, $_args, $event)
{
global $_post;
if (isset($_post['module_url']) && isset($_post['ss']) && strlen($_post['ss']) > 0) {
$_data['search'] .="|| profile_bio = %{$_post['ss'}%";
}
return $_data;
}
So you'd just append
||profile_bio = %whatever%