Site logo

Archived topic

Hide certain categories from Categories Navigation in the Niche Shop Page

3 replies · Started by Deyson on January 22, 2022

Viewing posts 1–4 of 4

Hello and good day.

How do I hide certain Categories in the Categories Navigation in the Niche Shop Page?

Thank you and have an amazing day! 😊

Hi Deyson,

You can use something like this if you want to hide the 1st and 2nd cateogry:

ul.woo-cat-nav li:nth-child(1), ul.woo-cat-nav li:nth-child(2) {
    display: none;
}

Thank you, Ying! 😊
Is it possible to do the same for the Slide-Out Navigation?

Thank you and have an amazing day! 😊

Yes, it would be:

.slideout-navigation ul.product-categories li:nth-child(1), .slideout-navigation ul.product-categories li:nth-child(2) {
    display: none;
}
This archived topic is closed to new replies.