0

我正在为客户调整 Bigcartel Luna 主题

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

4

1 回答 1

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 %}

... 等等。

于 2015-07-04T18:08:16.857 回答