Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Linking directly to group sub-pages such as members, forum etc.


Virtuali
Participant

@gunju2221

You can make the group’s default page being the Forum by adding this to your bp-custom.php:

`function redirect_to_forum() {
global $bp;

$path = clean_url( $_SERVER );

$path = apply_filters( ‘bp_uri’, $path );

if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
}
add_action( ‘wp’, ‘redirect_to_forum’ );`

Skip to toolbar