Reply reminder - Remind users to reply to new users topics with zero replies

Why not just add a navigation page that lists all topics with zero replies? The query exists… adding it to the navigation is trivial…

Why does it have to nag me?

Adding this to the </body> in your Customize, creates an Unanswered navigation tab

<script>
  Discourse.ExternalNavItem = Discourse.NavItem.extend({
    href : function() {
      return this.get('href');
    }.property('href')
  });

  I18n.translations.en.js.filters.unanswered = { title: "Unanswered", help: "Topics that have not be answered" };

  Discourse.NavItem.reopenClass({
    buildList : function(category, args) {
      var list = this._super(category, args);
      if(!category) {
        list.push(Discourse.ExternalNavItem.create({href: '/latest?max_posts=1', name: 'unanswered'}));
      }
      return list;
    }
  });
</script>
20 Likes