我花了一天的大部分时间来建立一个新的 shopify 网站——我第一次使用 shopify。其中大部分内容都非常简单明了,但在产品页面上显示库存时,我发现自己有些难过。我正在使用首次亮相的主题,并使用编辑器更新“product-template.liquid”
浏览文档后,我添加了以下内容;
{% comment %} Inventory tracking on product page {% endcomment %}
<div id="variant-inventory" class="{% unless current_variant.available %} hide {% endunless %}">
{% if current_variant.inventory_management == "shopify" and current_variant.inventory_policy != "continue" %}
We have {{ current_variant.inventory_quantity }} in stock for next-day delivery when you order by 2pm.
{% else %}
Out of Stock
{% endif %}
</div>
但是,对于实际上有货的物品,目前这会返回“缺货”。此外,我希望实现但无法找到文档的是;
- '有货' = 我们有 {{ current_variant.inventory_quantity }} 有现货,当您在下午 2 点之前订购时,可以在第二天发货。
- '没有库存,但允许客户订购' = 现在订购,7 天内交货
- '没有库存,客户不允许订购' = 缺货
非常感谢任何指针!