Remove Product Category from Product Titles on the Shop Page

Hi there,

Please refer to this screenshot: http://prntscr.com/ni0m14

My shop is at: https://www.voyageswimwear.com/shop/ and it’s run on Theme X. I couldn’t find the option to remove the Product Category appearance from my product titles on the woocommerce Shop page.

Could you please give me a solution?

Thanks

Hi Michelle,

Thanks for reaching out.

Those aren’t coming from X theme or Woocommerce default classes, perhaps it’s a 3rd party plugin. But, you can hide it by adding this CSS to Theme Options > CSS

. post-type-archive-product .vee_category_title {
    display: none !important;
}

Cheers!

Hi Rad,

Thanks for your reply but unfortunately that didn’t work out. I also checked the plugin list but couldn’t figure out which one caused this. Is there any other solution?

Hi Michell,

Sorry, there was typo error causing the space. Please change it to this

.post-type-archive-product .vee_category_title {
    display: none !important;
}

Hope this helps :slight_smile:

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