How in the world can I check if a product is in a certain product category on the single-product.php?
<?php if (is_product_category('audio')) {
echo 'In audio';
woocommerce_get_template_part( 'content', 'single-product' );
} elseif (is_product_category('elektro')) {
echo 'In elektro';
woocommerce_get_template_part( 'content', 'single-product' );
} else {
echo 'some blabla'; } ?>
is_product_category(‘slug’) does not have an effect on the single-product.php. I want to have the upper conditionals. Any solution for this on a single-product page?
I don’t think
get_categories()
is the best option for you in this case because it returns a string with all the categories listed as anchor tags, fine for displaying, but not great for figuring out in code what the categories are. Ok, so the first thing you need to do is grab the product/post object for the current page if you don’t already have it:Then you can get the product category term objects (the categories) for the product. Here I’m turning the category term objects into a simple array named
$categories
so it’s easier to see what slugs are assigned. Note that this will return all categories assigned to the product, not just the one of the current page, ie if we’re on/shop/audio/funzo/
:Then we just have to check whether a category is in the list:
Putting it all together:
Hopefully this is what you were looking for and answers your question.
has_term
should work in this case:It’s worth noting that you can go through a list of options by calling an array rather than having to clutter up your code with lots of elseif checks, assuming you want to do the same thing with each category that is.
This is old but just in case people are still looking WooThemes as a simple solution:
*Change ‘your_category’ to whatever you are using.
Here is the link to the documentation: https://docs.woothemes.com/document/remov-product-content-based-on-category/
I’d look at using the
get_categories()
function of the WC_Product class.You can find the link to the documentation here.
Basically within the loop of the page call the function to return the categories associated with the product.