Re: bp_nav item values
Anyway. Now that its all said and done. I’m still upset I cant affect the ‘posts’ bp_nav tab. I’ve got it down, I change the of any other tab and it works. just not the ‘posts’ tab.
I have tried this in a /plugins/ file, a /mu-plugins/ file and the child theme functions… no luck.
function erocks_change_bp_tag_position()
{
global $bp;
$bp->bp_nav = 10;
$bp->bp__nav = 20;
$bp->bp_nav = 35;
$bp->bp_nav = 40;
$bp->bp_nav = 50;
$bp->bp_nav = 60;
$bp->bp_nav = 70;
$bp->bp_nav = 80;
}
add_action( ‘bp_init’, ‘erocks_change_bp_tag_position’, 999 );