Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Change Group Tab Titles


r-a-y
Keymaster

@r-a-y

Not a great technique because when you upgrade BP, all your changes will be gone!

I’d rather do something like this in my theme’s functions.php:


function my_bp_group_overrides() {
global $bp;

$bp->bp_options_nav = 'Group Home';
$bp->bp_options_nav = 'Group Forum';
$bp->bp_options_nav = 'Group Admin';
}
add_action('get_header', 'my_bp_group_overrides');

Skip to toolbar