How can I display the original price before the sale price?

How can I have the original price appear before the sale price please?

https://auchterlonies-com.myshopify.com/collections/all-shirts

paswd: awskob

@RobMoore007

You can do this change in your theme, it should mostly be inside product-grid.liquid file or similar file depending on the theme you are using

look for the following piece of code

 

  £37.99 
 

  £39.99RRP

Change the order of elements 

 
 

  £39.99RRP

  £37.99 

You may not see the price as it is so look for class name to identify

hello @RobMoore007

please Go to Online Store->Theme->Edit code then go to style.css ->paste below code at the bottom of the file.

#shopify-section-collection__main .product-wrap .product-thumbnail__price{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
2 Likes

Thank you this worked a treat :slightly_smiling_face: