Re: Navigation problems :(
Righteo, I spoke to a mate about this earlier and he said it was a function. I went raking to see if the function in the trunk was different from my current install – lo and behold, it was, so I\’ve just tested the replacement function and everything is hunky-dory
For anyone in the same prediciment as me it\’s here – replace the old function with this:
bp-core/bp-core-templatetags.php on line 392
function bp_is_page($page) {
global $bp;
if ( $bp->displayed_user->id || $bp->is_single_item )
return false;
if ( $page == $bp->current_component || ( is_home() && $page == \'home\' && $bp->current_component == $bp->default_component ) || ( $page == MEMBERS_SLUG && !$bp->current_component ) )
return true;
return false;
}
I am SOOOOOOOOO chuffed that’s out of the way