Hi, I am facing an issue over in my shopify product page. The “compare at price” option is not showing in the product details page. There is no such field called " compare at price". My primary market is UK. I am using the atlas ai store builder theme. This ai store builder also not showing the compare at price features because of my shopify store does not have the compare at price feature. Anyone help me to create the compare at price option on my product details page.
Hello @USSShri
Enable “Compare at Price” in Product Settings
Go to Shopify Admin > Products
Click on any product.
Scroll to Variants (or Pricing, if it’s a single variant).
Check if there is a “Compare at price” field.
if you face any issue about cookies visit this website
Hey there @USSShri Check out the process spelt out in the reply marked as a solution here https://community.shopify.com/post/1962489 and let me know if it works for you.
- Log in to your Shopify Admin Panel.
- Go to Products > Pricing > Compare-at price.
- Then, add your price.
If this helped, don’t forget to Like it and Mark it as a Solution!
Hi @USSShri ,
If the “Compare at price” field is missing from your Shopify Product Details Page and you’re using the Atlas AI Store Builder theme, it likely means:
-
The theme isn’t rendering it in the template.
-
Your products might not have the compare at price set in the Shopify admin.
-
The AI Store Builder interface might not expose the field visually, but Shopify does support this natively.
Solution:
-
In Shopify admin, go to the product and set a Compare at price higher than the actual Price.
-
Then, go to Online Store > Edit Code and open the product price section (e.g., product-price.liquid or main-product.liquid).
-
Add this code:
{% if product.compare_at_price > product.price %}
{{ product.compare_at_price | money }}
{{ product.price | money }}
{% else %}
{{ product.price | money }}
{% endif %}
If “Compare at price” isn’t showing on your Shopify product page:
-
Check product setup – In Products → Pricing, make sure Compare at price is filled.
-
Check theme settings – In Online Store → Customize → Product Page, see if Show compare at price is enabled.
-
Edit theme code if needed – Add a snippet to
product-template.liquidto displaycompare_at_pricewhen it’s higher thanprice. -
Verify Shopify plan/market – Compare at price is supported in all plans, including UK stores.
Many Shopify users face the issue where the “compare at price” doesn’t appear, especially when the theme hides it until the pricing fields are set correctly. In the Atlas AI Store Builder theme, the compare-at price must be higher than the regular price for the discount display to activate. If it still doesn’t show, checking the product-price.liquid or main-product.liquid file usually fixes the display problem. Adjusting the Liquid conditions often resolves missing price issues instantly. A helpful reference for similar store optimization topics is: https://bloketjoin.com/
Hi @USSShri
You can just turn on the Compare at Price in product admin by filling in the original price at the top of your price. If your theme does not show it, add a small snippet to your product template to display it when Compare at Price is greater than Price to help customers see the discount.
