我一直在使用metafields尝试向我的产品添加下载列表。我有一些手册,我希望每个产品都有。
我正在使用此代码:
{% if product.metafields.document.doc_1 =='' %}
<p>There are no downloads for this product</p>
{% else %}
<h4 class="page-subheading productscategory_title">
Downloads
</h4>
<ul>
{% for field in product.metafields.document%}
<li>{{ field | last }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
但它似乎不起作用。
这也是我可以在产品中添加链接到文件的唯一方法吗?
答案 0 :(得分:0)
尽可能使用布尔逻辑来Shopify液体。布尔逻辑的更多细节和用例 - https://help.shopify.com/themes/liquid/basics/true-and-false