这似乎很容易,但是在研究和敲打了几个小时之后,我仍然无法弄清楚。我的目标是在 Shopify 集合网格中插入一个非产品 HTML 块,例如此处第 1 行第 3 列中的“享受免费陆运”块:
http://www.katespade.com/designer-handbags/handbags,default,sc.html
我的收藏网格设置为每页 3 列乘以 4 行,我希望用 3 个或更多产品替换所有收藏页面第 2 行第 1 列的块。
我需要修改的液体循环是:
<ul class="product-grid clearfix">
{% for product in collection.products %}
<li{% cycle '', '', ' class="last-in-row"' %}>
{% include 'product-grid-item' %}
</li>
{% endfor %}
</ul>
有没有人有任何见解?