A Business Bloomer fan asked me an interesting question this week: how to apply CSS on the single product page based on the product category? Well, the answer is pretty simple: if we’re able to add the category name to the HTML “body”, this can then be targeted in your custom CSS. So, let’s see how this is done!

PHP Snippet: Add WooCommerce Product Category as Body Class @ Single Product Page
Thankfully, there was already some literature available on GitHub, and despite being 5 years old it still works like a charm. So, many thanks Michael Krapf 🙂
/**
* @snippet Product Category > Body Class @ Single Product
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @testedwith WooCommerce 8
* @community https://businessbloomer.com/club/
*/
add_filter( 'body_class', 'bbloomer_wc_product_cats_css_body_class' );
function bbloomer_wc_product_cats_css_body_class( $classes ){
if ( is_singular( 'product' ) ) {
$current_product = wc_get_product();
$custom_terms = get_the_terms( $current_product->get_id(), 'product_cat' );
if ( $custom_terms ) {
foreach ( $custom_terms as $custom_term ) {
$classes[] = 'product_cat_' . $custom_term->slug;
}
}
}
return $classes;
}
Hey, I have been following your tutorial for a long time. But I could not find any related to “always show selected WooCommerce category on top”
FOR example, I have a few categories:
Fan
Fan 1
Fan 2
Shoes
Shoes 1
Shoes 2
Socks
When I clicked the SOCKS category, it should look like as below :
Socks
Socks 1
Socks 2
Fan
Shoes
When I clicked the SHOES category, it should look like as below :
Shoes
Shoes 1
Shoes 2
Fan
Socks
CSS would be much appreciate, or if there is any extra plugin I can use also will be appreciate. Thanks!
Hi Nani, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Any advice on how to do this in the cart and checkout pages, so that it adds classes of the product category based on what items are in the cart/checkout?
Hi Jon, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Still working, thank you for the help.
Cheers!
Nice one! I would be interested how that that works with woocommerce product tags instead of categories. Any hints are welcome 🙂
Rainer, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R
Works like a charm 😉 Thanks!
Nice 🙂
Absolutely fantastic! Works beautifully 🙂
Awesome 🙂
Fine.
My problem is to add a small CSS code to be used only in category page.
The theme I use has a problem and don’t give to me this opportunity, so I wish to use functions.php
This is my code:
.shop-page-title { height:300px !important; max-height:300px !important; }
Hey Giancarlo, you can definitely target the “archive” pages via CSS only 🙂
Hi,
Thank you so much for your helpful blogs and videos. I wish to change the colour & logo image in my menu navigation on my product category page and single products in that category. How can I edit this to include the product category page also?
Thank you 🙂
Hey Rachael thanks so much for your comment! Once the category is in the
class, you can do whatever you like with CSS on that specific page – as you said this only works on the single product page. In fact, the category page already has a body class with the name of the category – so there is no need for us to add it; if you target that in your CSS you’ll be able to achieve what you like. Let me know!