Disabling tags from WooCommerce Products.

I’ve been working on a client site and need to use tags to target a specific product. When doing this, the tag showed up on the front end of the site in the product listing, right beside the category.
This wasn’t something I wanted shoppers to see.

Instead of using a function, we can accomplish hiding tags very simply with a small chunk of CSS!

.tagged_as {
display: none!important;
}

That is it! Happy hiding your tags!

Leave a Reply

Your email address will not be published. Required fields are marked *