bp_options_nav['groups']['home']['slug'] ) === false ) { echo "HERE WE GO..."; echo "
"; print_r($bp->groups->current_group); echo "
"; echo $bp->groups->current_group->status; echo $bp->groups->current_group->is_user_member; if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == 'public') { //echo "
"; print_r($bp->bp_options_nav); echo "
"; //exit(); if ($bp->bp_options_nav['groups']['announcements']['slug']) { bp_core_redirect( $path . $bp->bp_options_nav['groups']['announcements']['slug'] . '/' ); } else { bp_core_redirect( $path . $bp->bp_options_nav['groups']['forum']['slug'] . '/' ); } bp_core_redirect( $path . 'welcome/' ); } } } function move_group_activity_tab() { global $bp; if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == 'public') { $bp->bp_options_nav['groups']['home']['position'] = '98'; $bp->bp_options_nav['groups']['admin']['position'] = '99'; $bp->bp_options_nav['groups']['home']['name'] = 'Activity Log'; } } add_action('wp', 'redirect_group_home' ); add_action('bp_init', 'move_group_activity_tab'); ?>