Forums
- 
		- Forum
- Posts
 
- 
		
			
		
			- Installation
- 28,536
 - Troubleshooting
- 62,801
 - Themes
- 10,444
 - Plugins
- 15,388
 - Requests & Feedback
- 14,986
 - Showcase
- 3,257
 
- 
		
I made another approach to fit this need and used it on my forum.
function ChangeRoleDisplayName() {
global $bb_roles;
$bb_roles->role_names['keymaster'] = "Toilet Cleaner";
[...]
}
add_action('bb_got_roles', 'ChangeRoleDisplayName', 10, 0);
?>The complete code is in role-display-name.php.