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

**URL:** https://meta.discourse.org/t/reply-reminder-remind-users-to-reply-to-new-users-topics-with-zero-replies/42644
**Category:** Feature
**Tags:** pr-welcome
**Created:** [2016 年 4 月 15 日午後 11:45 UTC](https://meta.discourse.org/t/reply-reminder-remind-users-to-reply-to-new-users-topics-with-zero-replies/42644 "2016-04-15T23:45:51Z")
**Posts on this page:** 1
**Showing post:** 8

<div class="post-metadata">

### Author: ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)
#### Post date: [2016 年 7 月 5 日午後 12:24 UTC](https://meta.discourse.org/t/reply-reminder-remind-users-to-reply-to-new-users-topics-with-zero-replies/42644/8 "2016-07-05T12:24:33Z")

</div>

Yes, you can

```plaintext
<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 currentUser = Discourse.User.current();
      var list = this._super(category, args);
      if(!category && currentUser != null && currentUser.staff) {
        list.push(Discourse.ExternalNavItem.create({href: '/latest?max_posts=1', name: 'unanswered'}));
      }
      return list;
    }
  });
</script>

```

---

_[View the full topic](https://meta.discourse.org/t/reply-reminder-remind-users-to-reply-to-new-users-topics-with-zero-replies/42644)._
