我正在使用 Shopify 并尝试添加选项以将礼品包装和手提箱添加到所购买的产品中。
我可以使用item.properties
询问用户的选择并将其显示在购物车中。
item.properties
如果设置为“礼品包装”或“手提箱”,我现在想将其他产品添加到购物车。
此代码放在 product-template.liquid 中但不起作用:
{% for property in item.properties %}
{% if property.last == "Gift Wrap" %}
<p>This would add gift wrap.</p>
<script>
jQuery.post('/cart/update.js', {
updates: {
32005672697928: 1
}
});
</script>
{% endif %}
{% if property.last == "Carry Strap" %}
<p>This would add carry strap.</p>
{% endif %}
{% endfor %}
{% endunless %}