Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: display username in members directory


r-a-y
Keymaster

@r-a-y

No need to edit a template file for this.

Try adding the following in your theme’s functions.php:

function my_member_username() {
global $members_template;

return $members_template->member->user_login;
}
add_filter('bp_member_name','my_member_username');

Skip to toolbar