有没有办法展示所有特殊的' (或销售)产品在页面上?我无法在文档中找到任何有关特价商品或商品的参考。
答案 0 :(得分:0)
这是Stencil产品卡价格对象{{product.price}}
"product": {
"price": {
"without_tax": {"formatted": "$150.00","value": 150},
"rrp_without_tax": {"formatted": "$250.00","value": 250},
"saved": {"formatted": "$100.00","value": 100},
"tax_label": "Tax"
}
}
产品的有效价格是销售价格。此销售价格与" without_tax"属性。然后,常规价格显示在名为" non_sale_price_without_tax"的新属性中。
"product": {
"price": {
"without_tax": {"formatted": "$123.00","value": 123},
"non_sale_price_without_tax": {"formatted": "$150.00","value": 150},
"rrp_without_tax": {"formatted": "$250.00","value": 250},
"saved": {"formatted": "$127.00","value": 127},
"tax_label": "Tax"
}
}
然后,您可以使用条件逻辑来了解销售价格,例如:
{{#if price.non_sale_price_without_tax}}
… display on-sale strikeout pricing
{{/if}}