diff --git src/bp-groups/classes/class-bp-groups-component.php src/bp-groups/classes/class-bp-groups-component.php
index 1e375f825..2eb295658 100644
--- src/bp-groups/classes/class-bp-groups-component.php
+++ src/bp-groups/classes/class-bp-groups-component.php
@@ -364,14 +364,8 @@ class BP_Groups_Component extends BP_Component {
 			return;
 		}
 
-		/**
-		 * Filters the preconfigured groups creation steps.
-		 *
-		 * @since 1.1.0
-		 *
-		 * @param array $value Array of preconfigured group creation steps.
-		 */
-		$this->group_creation_steps = apply_filters( 'groups_create_group_steps', array(
+		// Set default creation steps.
+		$group_creation_steps = array(
 			'group-details'  => array(
 				'name'       => _x( 'Details', 'Group screen nav', 'buddypress' ),
 				'position'   => 0
@@ -380,19 +374,19 @@ class BP_Groups_Component extends BP_Component {
 				'name'       => _x( 'Settings', 'Group screen nav', 'buddypress' ),
 				'position'   => 10
 			)
-		) );
+		);
 
 		// If avatar uploads are not disabled, add avatar option.
 		$disabled_avatar_uploads = (int) bp_disable_group_avatar_uploads();
 		if ( ! $disabled_avatar_uploads && $bp->avatar->show_avatars ) {
-			$this->group_creation_steps['group-avatar'] = array(
+			$group_creation_steps['group-avatar'] = array(
 				'name'     => _x( 'Photo', 'Group screen nav', 'buddypress' ),
 				'position' => 20
 			);
 		}
 
 		if ( bp_group_use_cover_image_header() ) {
-			$this->group_creation_steps['group-cover-image'] = array(
+			$group_creation_steps['group-cover-image'] = array(
 				'name'     => _x( 'Cover Image', 'Group screen nav', 'buddypress' ),
 				'position' => 25
 			);
@@ -400,12 +394,21 @@ class BP_Groups_Component extends BP_Component {
 
 		// If invitations are enabled, add invitations.
 		if ( bp_is_active( 'groups', 'invitations' ) ) {
-			$this->group_creation_steps['group-invites'] = array(
+			$group_creation_steps['group-invites'] = array(
 				'name'     => _x( 'Invites',  'Group screen nav', 'buddypress' ),
 				'position' => 30
 			);
 		}
 
+		/**
+		 * Filters the preconfigured groups creation steps.
+		 *
+		 * @since 1.1.0
+		 *
+		 * @param array $value Array of preconfigured group creation steps.
+		 */
+		$this->group_creation_steps = apply_filters( 'groups_create_group_steps', $group_creation_steps );
+
 		/**
 		 * Filters the list of valid groups statuses.
 		 *
