Archived topic
different background color product single depending on product category
3 replies · Started by Heinrich on January 25, 2022
Hi Team,
I need to change the product single background depending on the product category.
Is there an easy way to achieve that?
best wishes
Hi there,
this article provides a PHP Snippet:
https://www.businessbloomer.com/woocommerce-add-category-css-body-class/
That will add the Category Term(s) as a CSS Class to the Body of the single product.
Resulting in:
product_cat_yourCategoryTermSlug
If you want to add that snippet i can then take a look at what CSS is required.
Hi David,
Thanks for your help, your are amazing!
I got the css by myself.
body.single-product.product_cat_brot {
background-color: #ffffff;
}
Glad to hear that!