# Custom Navigation Bar items (bugs) removed?

**URL:** https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272
**Category:** Site feedback
**Created:** [2015年二月15日 21:30 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272 "2015-02-15T21:30:35Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![DeanMarkTaylor](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/deanmarktaylor/32/102462_2.png) [@DeanMarkTaylor](https://meta.discourse.org/u/DeanMarkTaylor)
#### Post date: [2015年二月15日 21:30 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272/1 "2015-02-15T21:30:36Z")

</div>

Just noticed the custom navigation bar items for “Bugs” etc are missing perhaps removed?

 ![](https://global.discourse-cdn.com/meta/original/3X/d/2/d22de1561f4f90156d96fd802280014ac0847123.png) 

Just wondering if there was a reason behind this?

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2015年二月16日 01:30 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272/2 "2015-02-16T01:30:15Z")

</div>

This is why I did not notice this 🙂

 ![](https://global.discourse-cdn.com/meta/original/3X/a/9/a9dd707d35f75a71bb890733f0d13678614e27ad.png) 

I will have a look later, bookmarked.

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2015年二月16日 05:13 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272/3 "2015-02-16T05:13:44Z")

</div>

K, added them back …

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2015年二月16日 05:13 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272/4 "2015-02-16T05:13:47Z")

</div>



---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2015年二月16日 05:14 UTC](https://meta.discourse.org/t/custom-navigation-bar-items-bugs-removed/25272/5 "2015-02-16T05:14:40Z")

</div>

For the record, this is what was added to `</body>`

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

  I18n.translations.en.js.filters.bugs = { title: "Bugs", help: "Open Bugs" };
  I18n.translations.en.js.filters.features = { title: "Features", help: "Open Feature Requests" }

  Discourse.NavItem.reopenClass({
    buildList : function(category, args) {
      var list = this._super(category, args);
      if(!category) {
        list.push(Discourse.ExternalNavItem.create({href: '/category/bug?order=op_likes&status=open', name: 'bugs'}));
        list.push(Discourse.ExternalNavItem.create({href: '/category/feature?order=op_likes&status=open', name: 'features'}));
      }
      return list;
    }
  });
  </script>

```
