• Hi –

    I have a site with a products page. The products are built in a products plugin/custom field and each are associated with a specific category. These main categories are listed out on the page below (in the middle). Can I hide two of the categories, or do I have to actually delete the categories all together? Each category has two products within them and the client still wants to link to the four products, just eliminate the category titles on the products page below.

    https://dev.enzymatics.com.php53-15.dfw1-1.websitetestlink.com/products/

    Any thoughts?

    Thanks!

    Bryan

Viewing 2 replies - 1 through 2 (of 2 total)
  • You just want to hide two specific categories from that list?

    If that’s the case, you can do that by targeting the classname of the listitem. For example, to hide “Binding Proteins” from that list, add this to your CSS:

    .cat-item-14 {
       display:none;
    }

    Or, to hide “Article related products” from the list, add this to your CSS:

    .cat-item-20 {
       display:none;
    }
    Thread Starter Marino Graphics

    (@marino-graphics)

    Thanks!

    After looking closer I found out that if I uncheck the categories for the four products (essentially so the categories I wanted to hide on that product page) then they disappear from the page list. So, if the categories have no products associated to them they do not appear. But your suggestion I assume is another way to do it, correct?

    Bryan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hiding Category Titles’ is closed to new replies.