I am just trying out directus for very first time.
wanted to check how one can hide these 3 entries from the settings menu?
- `Report Bug`
- `Request Feature`
- `Directus 11.17.3`
help is appreciated .
I am just trying out directus for very first time.
wanted to check how one can hide these 3 entries from the settings menu?
help is appreciated .
Hi @hb2708, welcome to the forum! In order to not show them you’d need some custom css. Something like:
.v-list-item.link[href='https://github.com/directus/directus/issues/new?template=bug_report.yml'], .v-list-item.link[href='https://roadmap.directus.io/'], .v-list-item.link[href='https://github.com/directus/directus/releases'] {
display: none !important;
}
You can also alter their urls via settings if that is more helpful.