bp_nouveau_group_pending_invites_set_page_title( $title )

Description

Source

File: bp-templates/bp-nouveau/includes/groups/functions.php

1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
function bp_nouveau_group_pending_invites_set_page_title( $title ){
 
    global $bp;
    $new_title = '';
 
    if ( 'pending-invites' === bp_get_group_current_invite_tab() ) {
        $new_title = esc_html__( 'Pending Invites', 'buddyboss' );
    }
 
    if( strlen( $new_title ) > 0 ) {
        $title['title'] = $new_title;
    }
 
    return $title;
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.