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

  • KasperKasper 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

  • Thank you so much!

Sign In or Register to comment.