Site logo

Archived topic

Hide title on brand pages

8 replies · Started by Mårten on January 26, 2021

Viewing posts 1–9 of 9

Hi,

I try to find a way to hide the headline on the brand pages but I do not succeed.

I have tested with the following code:

.page-id-559 .woocommerce-products-header {
display: none;
}

Please see link to page in private information field.

Do you have an easy solution to the problem? :)

Thanks in advance!

Hi there,

try this CSS:

.product[class*="pwb-brand"] .woocommerce-products-header__title {
  display: none;
}

YES!

Thank you guys! :)

I'm sorry but the headlines under the "regular" category pages are now hidden as well.

Hmmm... which means the Brand class is also being added to them - can you share a link to a Brand Page and a non-brand category page.

Try this:

body[class*="tax-pwb"] .woocommerce-products-header__title {
  display: none;
}

It works!

Thank you so much!

You're welcome

This archived topic is closed to new replies.