Index: src/bp-activity/bp-activity-admin.php
===================================================================
--- src/bp-activity/bp-activity-admin.php	(revision 11906)
+++ src/bp-activity/bp-activity-admin.php	(working copy)
@@ -296,12 +296,11 @@
 		);
 
 		// Add accessible hidden heading and text for Activity screen pagination.
-		if ( bp_get_major_wp_version() >= 4.4 ) {
-			get_current_screen()->set_screen_reader_content( array(
-				/* translators: accessibility text */
-				'heading_pagination' => __( 'Activity list navigation', 'buddypress' ),
-			) );
-		}
+		get_current_screen()->set_screen_reader_content( array(
+			/* translators: accessibility text */
+			'heading_pagination' => __( 'Activity list navigation', 'buddypress' ),
+		) );
+
 	}
 
 	// Enqueue CSS and JavaScript.
Index: src/bp-groups/bp-groups-admin.php
===================================================================
--- src/bp-groups/bp-groups-admin.php	(revision 11906)
+++ src/bp-groups/bp-groups-admin.php	(working copy)
@@ -186,12 +186,10 @@
 		);
 
 		// Add accessible hidden heading and text for Groups screen pagination.
-		if ( bp_get_major_wp_version() >= 4.4 ) {
-			get_current_screen()->set_screen_reader_content( array(
-				/* translators: accessibility text */
-				'heading_pagination' => __( 'Groups list navigation', 'buddypress' ),
-			) );
-		}
+		get_current_screen()->set_screen_reader_content( array(
+			/* translators: accessibility text */
+			'heading_pagination' => __( 'Groups list navigation', 'buddypress' ),
+		) );
 	}
 
 	$bp = buddypress();
Index: src/bp-members/classes/class-bp-members-admin.php
===================================================================
--- src/bp-members/classes/class-bp-members-admin.php	(revision 11906)
+++ src/bp-members/classes/class-bp-members-admin.php	(working copy)
@@ -1544,16 +1544,14 @@
 			);
 
 			// Add accessible hidden headings and text for the Pending Users screen.
-			if ( bp_get_major_wp_version() >= 4.4 ) {
-				get_current_screen()->set_screen_reader_content( array(
-					/* translators: accessibility text */
-					'heading_views'      => __( 'Filter users list', 'buddypress' ),
-					/* translators: accessibility text */
-					'heading_pagination' => __( 'Pending users list navigation', 'buddypress' ),
-					/* translators: accessibility text */
-					'heading_list'       => __( 'Pending users list', 'buddypress' ),
-				) );
-			}
+			get_current_screen()->set_screen_reader_content( array(
+				/* translators: accessibility text */
+				'heading_views'      => __( 'Filter users list', 'buddypress' ),
+				/* translators: accessibility text */
+				'heading_pagination' => __( 'Pending users list navigation', 'buddypress' ),
+				/* translators: accessibility text */
+				'heading_list'       => __( 'Pending users list', 'buddypress' ),
+			) );
 
 		} else {
 			if ( ! empty( $_REQUEST['signup_ids' ] ) ) {
