How do I change my compare at price?

Topic summary

A user seeks to modify the “compare at price” display on their product pages with specific styling requirements: making it visible, unbolded, smaller, light grey, and positioned after the regular price rather than before.

Initial Solutions Provided:

  • One responder offers CSS code targeting skelet.css using flexbox with row-reverse to reorder prices and style the old price as light grey and smaller.
  • Another suggests simpler CSS for main.css using flex-direction: column-reverse, though this applies to collection pages rather than individual product pages.

Market-Specific Issue Discovered:
The discussion reveals a secondary problem: compare-at pricing doesn’t display in the Australian market. This occurs because Shopify Markets doesn’t natively support compare-at price configuration through the standard interface.

Proposed Workarounds:

  • Manually export products, add compare-at prices for specific markets, then re-import the data.
  • Use the “Easy Price Editor” app, which embeds into Shopify’s product admin for easier multi-market price management.

The user is testing solutions but hasn’t confirmed a final resolution for either the styling or market-specific pricing issues.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

Hi everyone,

I have read a bunch of posts that answer one or two of my requests but none that solve the entire problem. Currently I cannot see my compare at price when I view the website but I can see it when customising the theme. I would like for the compare at price to be

A) visible
B) unbolded
C) smaller
D) light grey
E) placed after the price rather than before

My website is alcatrazgear.com if you would like to inspect.

1 Like

Hi @DaveyAlcatraz ,

I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!

Step 1: Go to Admin → Online store → Theme > Edit code:

Step 2: Search for the file skelet.css. And add this code snippet to the end of the file.

x-cell.card-price div div {
    display: flex;
    flex-direction: row-reverse;
    width: 50% !important;
    justify-content: start;
}

x-cell.card-price div div .old-price {
    padding-left: 10px !important;
    color: lightgray;
    font-size: x-small;
}

Step 3: Save your code and reload this page.

=>> The result:

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day sir!

1 Like

Hi @DaveyAlcatraz

Check this one,.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.price__sale {
    display: flex !important;
    flex-direction: column-reverse !important;
}

And Save.

result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Hi, I’m yet to try this solution because I’m in the middle of trying another but for some reason my compare at pricing doesn’t show in the Australian market, do you know how to fix that?

This is a great piece of code I will certainly implement but not quite what I was looking for, I was hoping for it to be on the product page itself, but this is something I will add once I’ve got the inital problem sorted. I have some code I’m trialing now and it appears I need to set up the Australian market compare at pricing first which I’m working out how to do.

Dear my friend @DaveyAlcatraz ,

:heart_eyes: It’s such my honor to help you, bro.

Hope you find answer for your problem from other comments, soon!

Have a nice day!

Hi @DaveyAlcatraz ,

I tried checking with the Australian market and it is indeed not showing up. After finding out, that because Markets doesn’t allow setup Compare-at price, it causes this error.
Solution if not using the app, you need to export the product, then enter the price manually and import again, it will display well. Refer link here
Hope it is clear to you.

1 Like

Thanks very much buddy I will implement shortly and get back to you.

1 Like

You can use the app Easy Price Editor to edit Shopify Market’s “Compare At” price for products. The app also provides the option to be embedded into your Shopify product admin, so that you can quickly edit the Compare At price for different Shopify Markets on your product admin screen.

If you would like to learn more, check out the Shopify app Easy Price Editor or watch this 2 minute video demo.