diff --git a/dreditor.user.js b/dreditor.user.js
index 676800c..ed9a587 100644
--- a/dreditor.user.js
+++ b/dreditor.user.js
@@ -1360,6 +1360,59 @@ Drupal.behaviors.dreditorIssueSummary = function (context) {
 };
 
 /**
+ * Get rid of +1 and subscribe comments
+ *
+ * This is called once for every issue page 'node-type-project_issue'
+ *
+ * From each .comment subtree we grab the .content
+ * - TODO: content is more complex the just text +1 or subscribe
+ *
+ */
+Drupal.behaviors.dreditorCollapseSubscibeComments = function(context) {
+  $('.node.node-type-project_issue').once('dreditorHideSubscibeAndPlusOneComments', function() {
+    var list = $('.comment:not(.comment-new)');
+    var result = $.grep(list, function(elem, i) {
+      var $elem = $(elem);
+      var $content = $('.content', $elem);
+      if ($('.project-issue', $content).length > 0) return false;
+      var text = $content.text();
+      // Uncomment to design better regex
+      // alert("Text: " + text);
+      var match = text.match(/(\+1)|(sub(scrib(e|ing))?)/i);
+      if (match) {
+        // alert("Text: " + text);
+        if (text.length < 100) {
+          return true;
+        }
+      }
+      else {
+        if(text.length < 50) {
+          // Discard short text
+          // alert("Text: " + text.length + "|" + text);
+          return true;
+        }
+      }
+      return false;
+    });
+    // Uncomment to see result in firebug console
+    // $.debug(result, 'comments to discard');
+    $(result)
+      .wrap('<fieldset class="collapsible collapsed"></fieldset>')
+      .before('<legend>Subscriber</legend>')
+      .wrap('<div class="fieldset-wrapper"></div>')
+    ;
+    $(result).css('backgroundColor','lightgrey');
+
+    if (document.location.hash != "") {
+      $(document.location.hash).each(function() {
+        var top = $(this).position().top;
+        $('html').scrollTop(top);
+      });
+    }
+  });
+};
+
+/**
  * Streamline issue comment form.
  *
  * Altering of the form makes certain browsers (such as Firefox) no longer find
