diff --git a/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php b/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php
index 8b632b6..6ebdd7c 100644
--- a/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php
+++ b/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php
@@ -751,15 +751,21 @@ abstract class Directory_Compat {
 			if ( 'plugin' == $this->compat() ) {
 				$subscribe   = esc_html__( 'Subscribe to this plugin', 'wporg-forums' );
 				$unsubscribe = esc_html__( 'Unsubscribe from this plugin', 'wporg-forums' );
+				$subscribe_description   = esc_html__( 'Receive email updates about new topics on this plugin', 'wporg-forums' );
+				$unsubscribe_description = esc_html__( 'Unsubscribe from email updates about new topics on this plugin', 'wporg-forums' );
 			} else {
 				$subscribe   = esc_html__( 'Subscribe to this theme', 'wporg-forums' );
 				$unsubscribe = esc_html__( 'Unsubscribe from this theme', 'wporg-forums' );
+				$subscribe_description   = esc_html__( 'Receive email updates about new topics on this theme', 'wporg-forums' );
+				$unsubscribe_description = esc_html__( 'Unsubscribe from email updates about new topics on this theme', 'wporg-forums' );
 			}
 			$term_subscription = Term_Subscription\Plugin::get_subscription_link( array(
 				'term_id'     => $term->term_id,
 				'taxonomy'    => $this->taxonomy(),
 				'subscribe'   => $subscribe,
 				'unsubscribe' => $unsubscribe,
+				'subscribe_description'   => $subscribe_description,
+				'unsubscribe_description' => $unsubscribe_description,
 			) );
 		}
 
diff --git a/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php b/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php
index 08f77d4..e6aaf98 100644
--- a/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php
+++ b/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php
@@ -579,6 +579,8 @@ Login and visit the topic to reply to the topic or unsubscribe from these emails
 			'taxonomy'    => 'topic-tag',
 			'subscribe'   => esc_html__( 'Subscribe to this topic tag', 'wporg-forums' ),
 			'unsubscribe' => esc_html__( 'Unsubscribe from this topic tag', 'wporg-forums' ),
+			'subscribe_description'   => esc_html__( 'Receive email updates about new topics', 'wporg-forums' ),
+			'unsubscribe_description' => esc_html__( 'Unsubscribe from email updates about new topics', 'wporg-forums' ),
 		), 'get_term_subscription_link' );
 		if ( empty( $r['user_id'] ) || empty( $r['term_id'] ) || empty( $r['taxonomy'] ) ) {
 			return false;
@@ -590,12 +592,17 @@ Login and visit the topic to reply to the topic or unsubscribe from these emails
 
 		$url = self::get_subscription_url( $r['user_id'], $r['term_id'], $r['taxonomy'] );
 		$text = $r['subscribe'];
+		$description = $r['subscribe_description'];
 		if ( self::is_user_subscribed_to_term( $r['user_id'], $r['term_id'] ) ) {
 			$text = $r['unsubscribe'];
+			$description = $r['unsubscribe_description'];
 		}
-		return sprintf( "<div class='wporg-bbp-term-subscription'><a href='%s'>%s</a></div>",
+				
+		return sprintf( "<div class='wporg-bbp-term-subscription'><a href='%s'>%s</a> <div class='notice notice-info notice-alt'>%s</div></div>",
 			$url,
-			esc_html( $text ) );
+			esc_html( $text ),
+			esc_html( $description )
+		);
 	}
 
 	public static function get_valid_actions() {
