Exclude single category/product from function
-
Hi,
I have added the below code to functions.php of my child theme in order to show quantity count for products within the category pages:
function shop_inventory(){ global $product; {echo 'Available: '.number_format($product->stock,0,'','');} }; add_action( 'woocommerce_after_shop_loop_item_title', 'shop_inventory' );
However, I would like to exclude one category from this action (which only has three products, so could be done on a product level if it is easier).
I have tried to display: none but there is no selector with the above for me to do this.Thank you!
- The topic ‘Exclude single category/product from function’ is closed to new replies.