Is there a way to change nav toggle menu on mobile to normal text like on desktop?

Hello,

It is possible with Overriding Discourse template. But I suggest to read the whole documentation.

In this case we have to find the navigation-bar template. Here you can find all templates. discourse/app/assets/javascripts/discourse/app/templates at main · discourse/discourse · GitHub

The navigation bar is a component so we can find this in the components folder. navigation-bar.hbs this is the template we want to use.

This is the navigation bar template on desktop view.

{{#each this.navItems as |navItem|}}
  <NavigationItem @content={{navItem}} @filterMode={{this.filterMode}} @category={{this.category}} @class={{concat "nav-item_" navItem.name}} />
{{/each}}
<CustomHtml @name="extraNavItem" @tagName="li" />
<PluginOutlet @name="extra-nav-item" @connectorTagName="li" @args={{hash category=this.category filterMode=this.filterMode}} />

But wait… we know the navigation bar has a mobile version what we want to change to the desktop version so if we look at the templates closely we can see a mobile folder. In this folder we can find those templates which has got mobile version. For example the navigation bar. So we have to go to the mobile folder first than go to components and search the navigation-bar.hbs. We will override this template with the desktop version, what I pasted above.

From the documentation I linked above we know we should start like this:

With the data-template-name we have to target the template we want to override.
Now we know the route is: mobile → components → navigation-bar

<script type="text/x-handlebars" data-template-name="mobile/components/navigation-bar">

</script>

After this we just simple paste the desktop code inside:

Now you can paste this template in a component to mobile header section. :slightly_smiling_face:

<script type="text/x-handlebars" data-template-name="mobile/components/navigation-bar">
  {{#each this.navItems as |navItem|}}
  <NavigationItem @content={{navItem}} @filterMode={{this.filterMode}} @category={{this.category}} @class={{concat "nav-item_" navItem.name}} />
{{/each}}
<CustomHtml @name="extraNavItem" @tagName="li" />
<PluginOutlet @name="extra-nav-item" @connectorTagName="li" @args={{hash category=this.category filterMode=this.filterMode}} />
</script>

Be sure your custom template is always up to date. If there is any change in the core navigation-bar template you should update your custom template as well to works everything fine. :slightly_smiling_face:

On the default theme it looks like this :arrow_down_small:

Screenshot 2022-08-03 at 14.51.12


Maybe need some CSS styling to fit to mobile. But it depends the theme you use.

For example the default theme has some border what I would hide.

Mobile / CSS section

.list-controls .nav-pills > li {
  border: none;
}

Screenshot 2022-08-03 at 14.50.52

2 Likes