【官網設計】商品價格顯示為「從 $XXXX 起」

若商品有設定不同的規格價格,部分主題會以價格區間顯示,此文章將教導你如何設定商品價格顯示為「從 $XXXX 起」。
設定前:

設定後:

- 前往 EasyStore 後台 → 品牌官網 → 佈景主題 → 編輯原始碼 → price.liquid 文件 → 搜尋 以下代碼
{% if product.price_varies and product_template == null %}
{{ price }} {% if product.price != product.price_max %}- {{ product.price_max | money: shop.money_format }}{% endif %}
{% else %}
{{ price }}
{% endif %}

- 複製以下代碼並覆蓋上一點的代碼
{% if product.price_varies %}{{ 'products.general.from_html' | t: price }}{% else %}{{ price }}{% endif %}

- 點擊儲存,完成!
更新時間: 11/03/2026
感謝!
