Removing a step from the group creation process
-
Hello I have used the following code to remove the step settings while creating a new group.
function remove_group_creation_steps() {
global $bp;
unset( $bp->groups->group_creation_steps[‘group-settings’] );
}
add_action( ‘bp_before_create_group_content_template’, ‘remove_group_creation_steps’, 1 );I can see the step being removed in the breadcrumbs, but the first step still redirects the page to the settings page instead of the new step 2.
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Removing a step from the group creation process’ is closed to new replies.