Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Group Administration


enlightenmental1
Participant

@enlightenmental1

here is what I used to limit the group creation to admins only

(can also be changed to allow other user levels if needed)

hope this helps

edit: bp-groups.php around line 205

global $user_ID; if( $user_ID ) :
if( current_user_can('level_10') ) {

bp_core_add_subnav_item( $bp->groups->slug, 'create', __('Create a Group', 'buddypress'), $groups_link, 'groups_screen_create_group', false, bp_is_home() );

}

endif;

Skip to toolbar