Hi, I have a custom taxonomy connected to woocommerce products. Now I created a UE post (product) list slider. And I want to print the terms of the custom Taxonomy with the posts. But I can't figure out how to achieve that.
Can you please give me an example or some directions?
Hi, I have a custom taxonomy connected to woocommerce products. Now I created a UE post (product) list slider. And I want to print the terms of the custom Taxonomy with the posts. But I can't figure out how to achieve that.
Can you please give me an example or some directions?
Regards,
Norman
Sorry figured it out...
{% set terms = getPostTerms(item.product.id, "merk", false) %}
{% for term in terms %}
{{term.name}}
{% endfor %}