This site: https://localcarbon.net/shop currently has only 2 products, making any use of categories superfluous. Therefore I do not want any category names being shown.
I have added this to the custom css:
/* hide category */
.product_meta {
display: none;
}
Which successfully removes the category name from the product page, but not the shop page. I found these in various forums and added:
.woocommerce-loop-category__title {
display: none;
}
and:
.tax-product_cat .thb-shop-title {
display: none;
}
But saw no effect.
I tried a couple of code snippets, but realized they were to exclude a category of products from showing, not hide the category titles.