How to hide these 3 items under settings page?

I am just trying out directus for very first time.

wanted to check how one can hide these 3 entries from the settings menu?

  1. `Report Bug`
  2. `Request Feature`
  3. `Directus 11.17.3`

help is appreciated .

1 Answer

1

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.