How can I display only the product tags for the current single product page and not all the products tags?
I've found questions about most popular tags but not for that.
How can I display only the product tags for the current single product page and not all the products tags?
I've found questions about most popular tags but not for that.
You can use the function wp_get_post_terms() function for WooCommerce 'product_tag' custom taxonomy and a defined product id this way:
Tested and works.
You can replace
get_the_id()
by a dynamic product Id variable too.