How can I disable "About" menu in hamburger menu?

Hi, I try to hiding “About” menu on short menu.

Let’s example on this site.
I mean “Introduce” menu in this picutres, I hope to hide this menu.

Especially, I want to hiding information about manager and admin.

How can I set up?
please let me know :pray: Thanks

You could hide the parts you want with custom CSS. I’m not really sure if there is an function for this in core.

On desktop now, so I checked CSS for you.

// hide about link in hamburger menu
a.widget-link.about-link {
    display: none;
}
// hide admins and mods
section.about.admins, section.about.moderators {
    display: none;
}
5 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.