Make another hamburger menu?

Is it possible (and how) to make another hamburger menu?

I know the basics of adding an icon into the mix, I did this to create a button for latest stuff, in :

<script type="text/discourse-plugin" version="0.4">
api.decorateWidget('header-icons:before', helper => {
    return helper.h('li.header-dropdown-toggle', [
        helper.h('a.icon#latest-button', {
            href:'https://MYDOMAIN/latest',
            title: 'Latest'
        }, helper.h('i.fa.fa-bolt.latest-button-icon')),
    ]);
});
</script>

Is it possible, in a similar way, to make another menu?

1 Like

Your post come up when I was searching to see if an answer already existed for a similar question (it didn’t really), this might be helpful to someone in the future

5 Likes