How can I disable the docs item in the 'more' section?

try this in common css of a theme or theme component:

  .sidebar-section-link-wrapper {
      .sidebar-section-link {
         &[data-link-name="docs"] {
         display: none;
         }
       }
   }

i also just added a setting to my Navigation Menu Modifier TC for hiding the docs link.

3 Likes