-2

I am trying to swap position of regular price and special price on product page.

My manager want to show regular price with line through and special price after that.

  • 3
    Hi, welcome to stack overflow. Please refer the [ask] link for more details on how to ask a question and update your question accordingly. – Jeroen Heier Dec 13 '17 at 04:57

1 Answers1

-2

In asset theme.js.liquid find

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

and swap position like below

customPriceFormat = ' <span aria-hidden="true"><s>' + comparePrice + '</s></span>';
customPriceFormat += ' <span aria-hidden="true" class="sale-price">' + customPrice + '</span>';
gre_gor
  • 6,669
  • 9
  • 47
  • 52