Re: How to hide the 'compare-at' price on product card (but keep it for the variation). Dawn theme

Solved

How to hide the 'compare-at' price on product card (but keep it for the variation). Dawn theme

liverpool
Tourist
3 0 0

Hi everyone 
I have certain variations on sale, and would like to hide the 'compare-at' price on the product card, because it is making the home page and collection page look cluttered and confusing. See my screenshot. (Interestingly, 'the compare-at' price is not showing on all the products, even though all products have the same size variation on sale.) 

Can anyone advise on how to do this?
I would like to keep the compare-at price for when the customer navigates to that particular variation. 

 

The url is www.thechristianpostercompany.com

Screenshot 2025-02-18 at 11.52.16.png


Accepted Solution (1)

EmilO
Shopify Partner
6 1 2

This is an accepted solution.

A fix could be to go to Online Store -> Customize (On the theme) -> Select the section you want to hide it from -> Custom CSS

Then paste this into it

 

.price--on-sale .price-item--regular {
   display: none;
}

 



Let me know if that fixed it for you 😄 

Best Regards,
Emil

View solution in original post

Replies 2 (2)

EmilO
Shopify Partner
6 1 2

This is an accepted solution.

A fix could be to go to Online Store -> Customize (On the theme) -> Select the section you want to hide it from -> Custom CSS

Then paste this into it

 

.price--on-sale .price-item--regular {
   display: none;
}

 



Let me know if that fixed it for you 😄 

Best Regards,
Emil
liverpool
Tourist
3 0 0

This has worked.  Thank you!!