在正常价格后购买产品页面特价

时间:2017-12-13 04:12:04

标签: templates shopify price

我正在尝试在产品页面上交换正常价格和特价的位置。

我的经理希望在此之后显示正常价格和特价。

1 个答案:

答案 0 :(得分:-2)

在资产theme.js.liquid中找到

customPriceFormat = ' <span aria-hidden="true">' + customPrice + '</span>
customPriceFormat += ' <span aria-hidden="true"><s>' + comparePrice + '</s></span>';

和交换位置如下

customPriceFormat = ' <span aria-hidden="true"><s>' + comparePrice + '</s></span>';
customPriceFormat += ' <span aria-hidden="true" class="sale-price">' + customPrice + '</span>';