Index: src/bp-templates/bp-legacy/buddypress/groups/single/home.php
===================================================================
--- src/bp-templates/bp-legacy/buddypress/groups/single/home.php	(revision 11604)
+++ src/bp-templates/bp-legacy/buddypress/groups/single/home.php	(working copy)
@@ -34,7 +34,15 @@
 		?>
 
 	</div><!-- #item-header -->
-
+     
+	 <?php 
+     
+	 /**
+	 * Fires before the display of the group item navigation div.
+	 *
+	 */
+     do_action( 'bp_before_group_item_nav' ); ?>
+        
 	<div id="item-nav">
 		<div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Group primary navigation', 'buddypress' ); ?>" role="navigation">
 			<ul>
@@ -53,7 +61,15 @@
 			</ul>
 		</div>
 	</div><!-- #item-nav -->
-
+        
+    <?php 
+    
+	/**
+	* Fires after the display of the group item navigation div.
+	*
+	*/
+    do_action('bp_after_group_item_nav' ); ?>
+        
 	<div id="item-body">
 
 		<?php
Index: src/bp-templates/bp-legacy/buddypress/members/single/home.php
===================================================================
--- src/bp-templates/bp-legacy/buddypress/members/single/home.php	(revision 11604)
+++ src/bp-templates/bp-legacy/buddypress/members/single/home.php	(working copy)
@@ -33,7 +33,14 @@
 		?>
 
 	</div><!-- #item-header -->
-
+    
+	<?php 
+    /**
+	* Fires before the display of the member item navigation div.
+	*
+	*/
+    do_action( 'bp_before_member_item_nav' ); ?>
+        
 	<div id="item-nav">
 		<div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Member primary navigation', 'buddypress' ); ?>" role="navigation">
 			<ul>
@@ -52,7 +59,14 @@
 			</ul>
 		</div>
 	</div><!-- #item-nav -->
-
+    
+	<?php 
+    /**
+	* Fires after the display of the member item navigation div.
+	*
+	*/
+    do_action('bp_after_member_item_nav' ); ?>
+        
 	<div id="item-body">
 
 		<?php
