我是在Shopify中使用Liquid代码的新手,我试图弄清楚如何实现过滤器功能,如下图(侧边栏中)所示。我无法显示标签,但是我的问题是显示类型,然后将标签附加到相关的类型。这里是到主题的链接,现在是Transfonter https://mela-projects-test.myshopify.com/collections/volume-4
在上述URL中,im只能显示标签“ white”,而不能显示“ crewneck”类型。代码也在下面
感谢您的帮助!
<div class="column w-col w-col-3">
<div class="filter-box">
<h5 class="collection-tile">{{ collection.title }}</h5>
{% for tag in collection.all_tags %}
{% for product_type in collection.all_types %}
{% if current_tags contains tag %}
<h6 class="active" id="types">
{{ product_type | link_to_type }}
</h6>
<h6 class="active" id="types">
{{ tag | link_to_remove_tag: tag }}
</h6>
{% else %}
<h6>
{{ tag | link_to_tag: tag }}
</h6>
{% endif %}
{% endfor %}
{% endfor %}
<p>_________________</p>
<a href="#" id="about-link">About/Backstory</a>
<a href="#" id="contact-link">Contact</a>
</div>
</div>