这适用于Shopify网站。有没有办法在购物车中只显示某些订单项属性?我有几个,它看起来很乱,所以只想显示一个选定的两个或三个。
答案 0 :(得分:5)
我假设您已经设置了与Shopify维基(Line Item Properties)上的建议类似的订单项属性。
product.liquid :
中会有类似的内容<div>
<p><label for="property1">Property 1:</label></p>
<p><input type="text" id="property1" name="properties[Property1]" /></p>
</div>
然后将此代码放在购物车项目标题下的 cart.liquid 中:
{% for p in item.properties %}
{% if p.first == 'Property2' or p.first == 'Property5' %}
{% unless p.last == blank %}
{{ p.first }}:
{% if p.last contains '/uploads/' %}
<a class="lightbox" href="{{ p.last }}">{{ p.last | split: '/' | last }}</a>
{% else %}
{{ p.last }}
{% endif %}
<br />
{% endunless %}
{% endif %}
{% endfor %}
以上代码直接来自Shopify wiki上的Line Item Properties文章(3.1节在购物车页面上显示订单项属性)。我刚刚在第二行添加了if语句,只显示了我想要的属性:
{% for p in item.properties %}
{% if p.first == 'Property2' or p.first == 'Property5' %}
...
{% endif %}
{% endfor %}
或者,如果要连续显示多个属性(例如前3个属性),可以这样做(不带if语句):
{% for p in item.properties limit:3 %}
...
{% endfor %}