Can i hide content on the category pages only?

this is on the category page how can I hide it on category pages only

Hey @wicara,

WooCommerce’s archive pages does have body classes. You can get those classes when you inspect your category page using the browser’s dev tools.

Given that info, you can write CSS like the following:

.tax-product_cat .your-element {
  display:none;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.