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

Bigcartel: Is it possible to add extra dynamic fields?

我正在为客户改编 Bigcartel Luna theme

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

抱歉,无法添加任何类型的自定义字段以在产品页面上显示额外信息。您可以考虑修改产品页面主题代码(通过自定义设计 > 高级 > 产品)并添加多个 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 %}

...等等。