我正在尝试在产品页面上交换正常价格和特价的位置。
我的经理希望在此之后显示正常价格和特价。
答案 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>';