【发布时间】:2020-06-19 19:23:07
【问题描述】:
我想更改 Shopify 中一种产品的运费。如果我从设置中更改它,那么它将在所有产品上实施。我想通过编码来做到这一点。我正在通过以下方法做到这一点,但它不起作用。这里有任何开发人员可以帮助我“编辑代码”吗?
{% for tag in product.tags %}
{% if tag == "quartz" or tag == "apple" or tag == "Citizen" %}
<div class="cart__shipping">{{ 'cart.general.shipping_at_checkout' | times:200 }}</div>
{% endif %}
{% unless product.tags == 'Default' %}
{{ 'cart.general.shipping_at_checkout' | t }}
{% endunless %}
{% endfor %}
【问题讨论】:
标签: shopify e-commerce liquid cart shipping