Bigcartel:是否可以添加额外的动态字段?

时间:2015-07-02 08:21:21

标签: bigcartel

我正在为客户调整Bigcartel Luna theme

他们想在产品页面的主标题下添加副标题。在Wordpress中,这将使用自定义字段完成。有没有办法使用Bigcartel添加新的动态字段?

1 个答案:

答案 0 :(得分:1)

很抱歉,但是没有办法添加任何类型的自定义字段来显示产品页面上的额外信息。您可以考虑修改产品页面主题代码(通过自定义设计>高级>产品)并添加多个if语句 -

{% if product.name == 'This product' %}
  <h2>This product</h2>
{% elsif product.name == 'That product' %}
  <h2>That product</h2>
{% elsif product.name == 'The other product' %}
  <h2>The other product</h2>
{% endif %}

......等等。