Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Remove child categories/sub categories from side panel

Hi!

Is there any way to not display child categories/sub categories in the categories side panel?

Comments

  • Options
    KasperKasper Scholar of the Bits Copenhagen Vanilla Staff

    Easy peasy:

    /* Use .Depth3 if you're using top level cats as headers */
    .PanelCategories .Depth2 {
        display: none;
    }
    

    You can go deeper if you want to:

    .PanelCategories .DepthN,
    .PanelCategories .DepthN + 1 {
        display: none;
    }
    

    Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub

  • Options

    Thank you so much!

Sign In or Register to comment.