Shopify 闭环标签
Shopify closing cyle-tag
我正在尝试在对集合的迭代完成后关闭循环标签。
<div class="row products">
{% for product in collection.products limit: settings.pagination_limit %}
{% cycle '<div class="row">', '', '', '' %}
{% include 'product-loop' with collection.handle %}
{% cycle '', '', '', '</div>' %}
{% endfor %}
</div>
我知道用自行车组,但我不知道怎么用在这里。
迭代一个集合后,应该使用一个新的循环组。
我尝试使用这个不起作用的东西:
{% cycle [collection.handle]: '<div class="row">', '', '', '' %}
你有什么想法吗?
它应该可以在没有方括号的情况下工作。试试这个:
{% cycle collection.handle: '<div class="row">', '', '', '' %}
我正在尝试在对集合的迭代完成后关闭循环标签。
<div class="row products">
{% for product in collection.products limit: settings.pagination_limit %}
{% cycle '<div class="row">', '', '', '' %}
{% include 'product-loop' with collection.handle %}
{% cycle '', '', '', '</div>' %}
{% endfor %}
</div>
我知道用自行车组,但我不知道怎么用在这里。 迭代一个集合后,应该使用一个新的循环组。
我尝试使用这个不起作用的东西:
{% cycle [collection.handle]: '<div class="row">', '', '', '' %}
你有什么想法吗?
它应该可以在没有方括号的情况下工作。试试这个:
{% cycle collection.handle: '<div class="row">', '', '', '' %}