diff --git a/src/bp-core/bp-core-admin.php b/src/bp-core/bp-core-admin.php
index 3a7a76d..bc58a27 100644
--- a/src/bp-core/bp-core-admin.php
+++ b/src/bp-core/bp-core-admin.php
@@ -299,13 +299,15 @@ class BP_Admin {
 			'bp_core_admin_tools'
 		);
 
-		$hooks[] = add_theme_page(
-			_x( 'Emails', 'screen heading', 'buddypress' ),
-			_x( 'Emails', 'screen heading', 'buddypress' ),
-			$this->capability,
-			'bp-emails-customizer-redirect',
-			'bp_email_redirect_to_customizer'
-		);
+		if ( ( bp_is_root_blog() || bp_is_multiblog_mode() ) && ! is_network_admin() ) {
+			$hooks[] = add_theme_page(
+				_x( 'Emails', 'screen heading', 'buddypress' ),
+				_x( 'Emails', 'screen heading', 'buddypress' ),
+				$this->capability,
+				'bp-emails-customizer-redirect',
+				'bp_email_redirect_to_customizer'
+			);
+		}
 
 		foreach( $hooks as $hook ) {
 			add_action( "admin_head-$hook", 'bp_core_modify_admin_menu_highlight' );
