Shopify:向特定产品页面添加其他部分
Shopify: Add additional sections to a specific product page
我正在尝试向我的 Shopify 产品页面添加其他部分。我已经成功添加了这些部分,但现在只想在特定产品页面上显示这些部分。到目前为止,它们都显示在所有产品页面上。
有人可以帮我吗?这是我使用的代码:
{% if product.title == "The Ocean Mat" %}
{% section "index-columns" %}
{% endif %}
但是没用。
非常感谢!
最好的,
拉斯
在检查字符串时使用 contains
,因为您的标题可能不完全匹配
{% if product.title contains "The Ocean Mat" %}
do something
{% endif %}
代替product.title
,使用product.type
;它更容易控制。客户看不到,可以从产品页面控制。
{% if product.type contains "mat" %}
do something
{% endif %}
我正在尝试向我的 Shopify 产品页面添加其他部分。我已经成功添加了这些部分,但现在只想在特定产品页面上显示这些部分。到目前为止,它们都显示在所有产品页面上。
有人可以帮我吗?这是我使用的代码:
{% if product.title == "The Ocean Mat" %}
{% section "index-columns" %}
{% endif %}
但是没用。
非常感谢!
最好的, 拉斯
在检查字符串时使用 contains
,因为您的标题可能不完全匹配
{% if product.title contains "The Ocean Mat" %}
do something
{% endif %}
代替product.title
,使用product.type
;它更容易控制。客户看不到,可以从产品页面控制。
{% if product.type contains "mat" %}
do something
{% endif %}