Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php	(revision 10710)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php	(working copy)
@@ -621,6 +621,21 @@
 add_action( 'bbp_theme_before_reply_content', 'wporg_support_add_moderation_notice' );
 
 /**
+ * Display a link to create a new topic in the current forum.
+ */
+
+function wporg_support_add_new_topic_link () {
+	printf(		
+		'<p class="bbp-reply-new-topic-instead"> %s <a href="%s">%s</a></p>',
+		__( 'Do you have a different question?', 'wporg-forums' ),
+		esc_url( bbp_get_forum_permalink( bbp_get_topic_forum_id() ) . '#new-topic-0' ),
+		__( 'Create a new topic instead', 'wporg-forums' )
+				
+	);
+}
+add_action( 'bbp_theme_after_reply_form', 'wporg_support_add_new_topic_link' );
+
+/**
  * Change "Stick (to front)" link text to "Stick (to all forums)".
  */
 function wporg_support_change_super_sticky_text( $links ) {
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style-rtl.css
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style-rtl.css	(revision 10710)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style-rtl.css	(working copy)
@@ -3812,6 +3812,21 @@
 	text-decoration: none;
 }
 
+#bbpress-forums .bbp-reply-new-topic-instead {
+    font-size: 0.8rem;
+    text-align: left;
+    padding-top:5px;
+}
+
+@media (max-width:480px){
+    #bbpress-forums .bbp-reply-new-topic-instead {
+        text-align: right;
+    } 
+    #bbpress-forums .bbp-reply-new-topic-instead a {
+        display:block;
+    }
+}
+
 .bbpress #bbpress-forums li.bbp-body div.type-topic span.bbp-admin-links,
 .bbpress #bbpress-forums li.bbp-body div.type-reply span.bbp-admin-links {
 	display: none;
@@ -3860,6 +3875,7 @@
 	display: block;
 }
 
+
 .bbpress #bbpress-forums ul.status-closed,
 .bbpress #bbpress-forums ul.status-closed a {
 	color: inherit;
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style.css
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style.css	(revision 10710)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/style.css	(working copy)
@@ -3814,6 +3814,21 @@
 	text-decoration: none;
 }
 
+#bbpress-forums .bbp-reply-new-topic-instead {
+    font-size: 0.8rem;
+    text-align: right;
+    padding-top:5px;
+}
+
+@media (max-width:480px){
+    #bbpress-forums .bbp-reply-new-topic-instead {
+        text-align: left;
+    } 
+    #bbpress-forums .bbp-reply-new-topic-instead a {
+        display:block;
+    }
+}
+
 .bbpress #bbpress-forums li.bbp-body div.type-topic span.bbp-admin-links,
 .bbpress #bbpress-forums li.bbp-body div.type-reply span.bbp-admin-links {
 	display: none;
