0

我正在使用 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 %}
4

1 回答 1

0

您的代码似乎不是打算在产品页面上使用的。看起来它应该放在{% for item in cart.items %} ... {% endfor %}循环内的购物车页面上。

此外,即使客户添加了 2 个以上的包装商品,此代码也只会添加 1 个包装产品。我会将代码更改为如下所示:

{%- assign numWrappedItems = 0 -%}
{%- for item in cart.items -%}
  {%- for property in item.properties -%}
    {%- if property.last == "Gift Wrap" -%}
      {%- assign numWrappedItems = numWrappedItems | plus: item.quantity -%}
      {%- break -%}
    {%- endif -%}
  {%- endfor -%}

  ...
{%- endfor -%}

{%- if numWrappedItems > 0 -%}
<script>
jQuery.post('/cart/update.js', {
  updates: {
    32005672697928: {{ numWrappedItems }}
  }
});
</script>

我希望以上是有道理的。

于 2020-05-05T00:30:42.540 回答