diff --git themes/wporg-support/bbpress/content-single-topic-lead.php themes/wporg-support/bbpress/content-single-topic-lead.php
index 685fd8e..f51d744 100644
--- themes/wporg-support/bbpress/content-single-topic-lead.php
+++ themes/wporg-support/bbpress/content-single-topic-lead.php
@@ -54,10 +54,16 @@ if ( bbp_is_single_view() || bbp_is_search_results() ) : ?>
 				<?php
 				bbp_user_nicename( bbp_get_topic_author_id(), array(
 					'before' => '<p class="bbp-user-nicename">(@',
-					'after'  => ')</p><br />',
+					'after'  => ')</p>',
 				) );
 				?>

+				<?php if ( current_user_can( 'moderate', bbp_get_topic_id() ) && 'bbp_blocked' === bbp_get_user_role( bbp_get_topic_author_id() ) ) : ?>
+					<p class="wporg-bbp-user-is-blocked">[<?php esc_attr_e( 'This user is blocked', 'wporg-forums' ); ?>]</p>
+				<?php endif; ?>
+
+				<br>
+
 				<?php
 				$title = get_user_option( 'title', bbp_get_topic_author_id() );
 				if ( $title ) :
diff --git themes/wporg-support/bbpress/loop-single-reply.php themes/wporg-support/bbpress/loop-single-reply.php
index 2c8b75f..d8181ed 100644
--- themes/wporg-support/bbpress/loop-single-reply.php
+++ themes/wporg-support/bbpress/loop-single-reply.php
@@ -44,6 +44,10 @@ if ( bbp_is_single_view() || bbp_is_search_results() || bbp_is_single_user_repli
 		) );
 		?>

+		<?php if ( current_user_can( 'moderate', bbp_get_reply_topic_id() ) && 'bbp_blocked' === bbp_get_user_role( bbp_get_reply_author_id() ) ) : ?>
+			<p class="wporg-bbp-user-is-blocked">[<?php esc_html_e( 'This user is blocked', 'wporg-support' ); ?>]</p>
+		<?php endif; ?>
+
 		<?php
 		$title = get_user_option( 'title', bbp_get_reply_author_id() );
 		if ( $title ) :
diff --git themes/wporg-support/sass/site/_bbpress.scss themes/wporg-support/sass/site/_bbpress.scss
index 65ac741..85d936a 100644
--- themes/wporg-support/sass/site/_bbpress.scss
+++ themes/wporg-support/sass/site/_bbpress.scss
@@ -422,6 +422,11 @@ section {
 			color: #f00;
 		}

+		p.wporg-bbp-user-is-blocked {
+			display: inline-block;
+			color: #f00;
+		}
+
 		.bbp-pagination {
 			font-size: ms(-2);
 			float: none;
