I am trying to target a specific category from a custom taxonomy. This is for WooCommerce.
So, the custom taxonomy is called "product_cat" and the category itself is called "adult-dvds".
This is what I tried; however, it didn't work (nothing shows up between the comment tags):
<!-- Custom Fields -->
<?php if (is_tax('product_cat','adult-dvds')) { ?>
<p>blah blah blah</p>
<?php } ?>
<!-- End Custom Fields -->
Is there something I missed?