Hi all,
I’m making the move to BP 1.5 which means some updates to my theme, I am currently testing everything out and one thing I am finding is the function I am using to make forums default in 1.2 doesn’t appear to be working in 1.5
The code is:
function my_bp_groups_forum_first_tab() {
global $bp;
$bp->bp_options_nav['groups']['home']['position'] = '50';
$bp->bp_options_nav['groups']['home']['name'] = 'Activity';
}
add_action('wp', 'my_bp_groups_forum_first_tab');
Does anyone know what it should be for 1.5?