Remove “Forum” from BuddyPress group creation step
Could you please try to use the given code which we need to add functions.php file of theme. Use Case : This is to remove the Forum step from the group creation process. add_filter(‘groups_create_group_steps’, function( $steps ) { unset( $steps[‘forum’] ); return $steps; }); Use Case : This is to redirect any attempts to access … Read more