BigCommerce (stencil) - 展示特价商品

BigCommerce (stencil) - display specials

有没有办法在一个页面上显示所有 'special'(或促销)产品?我在文档中找不到任何关于特价或促销产品的参考。

这是 Stencil 产品卡片价格对象 {{product.price}}

"product": { 
  "price": {
    "without_tax": {"formatted": "0.00","value": 150},
    "rrp_without_tax": {"formatted": "0.00","value": 250},
    "saved": {"formatted": "0.00","value": 100},
    "tax_label": "Tax"
  }
}

产品的有效价格为销售价格。此销售价格与 "without_tax" 属性 关联。然后,正常价格显示在名为 "non_sale_price_without_tax".

的新 属性 中
"product": { 
  "price": {
    "without_tax": {"formatted": "3.00","value": 123},
    "non_sale_price_without_tax": {"formatted": "0.00","value": 150},
    "rrp_without_tax": {"formatted": "0.00","value": 250},
    "saved": {"formatted": "7.00","value": 127},
    "tax_label": "Tax"
  }
}

然后您可以使用条件逻辑,了解这一点,做一些事情来表示销售价格,例如:

{{#if price.non_sale_price_without_tax}}
     … display on-sale strikeout pricing
{{/if}}