我正在shopify上建立一个电子商务网站,我想在产品中添加颜色样本,但仅限于一个选项(例如颜色),而不是所有选项。我根据本教程http://docs.shopify.com/manual/configuration/store-customization/add-color-swatches-to-your-products进行了所有更改,但它可以正常工作但是可以选择。有没有办法只显示一个选项作为颜色样本?
提前致谢
答案 0 :(得分:2)
如果您已关注this tutorial,则只需将样本限制为一个选项即可put this in product.liquid:
{% if product.available and product.variants.size > 1 %}
{% include 'swatch' with 'Color' %}
{% endif %}
(将Color
替换为您想要成为色板/按钮的选项的名称)