Forums
-
- Forum
- Posts
-
- Installation
- 28,413
- Troubleshooting
- 62,361
- Themes
- 10,408
- Plugins
- 15,321
- Requests & Feedback
- 14,959
- Showcase
- 3,254
-
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.