Just looking to change the default 'Member' forum role title to something more appropriate for my forum. What file would that be contained in?
bbPress support forums » Troubleshooting
Change the default 'Member' role title?
(5 posts)-
Posted 1 year ago #
-
Changing the 'name' value (line 125) from your
bb-includes/capabilities.phpfile would be enoughPosted 1 year ago # -
Worked like a charm, thanks so much.
Posted 1 year ago # -
No need to change core files. Just make a file called user_types.php with the following code in it and put it in your my-plugins/ folder.
<?php
/*
Plugin Name: Change 'Member' Label
Plugin URI: http://bbpress.org/forums/topic/503
*/
function change_user_type_labels( $label, $type ) {
if ( 'member' == $type )
return 'Kazoo Corps Draftee';
return $label;
}
add_filter( 'get_user_type_label', 'change_user_type_labels', 10, 2 );
?>Posted 1 year ago # -
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.
Posted 1 year ago #
Reply
You must log in to post.