如何在liquid shopify中查看当前类别是否有标签?
How to check current category has tags in liquid shopify?
如何在 liquid Shopify 中检查当前类别是否有标签?
假设我在分类页面上,我想检查分类是否有标签。
您可以使用:
{% if collection.all_tags.size > 0 %}
collection has tags
{% else %}
collection has no tags
{% endif %}
如何在 liquid Shopify 中检查当前类别是否有标签?
假设我在分类页面上,我想检查分类是否有标签。
您可以使用:
{% if collection.all_tags.size > 0 %}
collection has tags
{% else %}
collection has no tags
{% endif %}