Hide Price for Sold Out products on product level Empire Theme

Solved

Hide Price for Sold Out products on product level Empire Theme

AdamCPT
Tourist
9 0 4

Hi there, I am using Empire Theme and wanting to hide product prices for Individual products that are sold out. 

 

I managed to hide them in the grid view , but not on individual pages ( See Pics)

Our site is www.toolcraft.co.za

 

Any help on how to hide these would be greatly appreciated.

AdamCPT_0-1696597154203.png

Grid view as above is fine. But product page as below we need help with:

 

AdamCPT_1-1696597251179.png

 

 

 

Accepted Solution (1)

JaviExpress
Shopify Partner
183 16 26

This is an accepted solution.

Perhaps just a CSS fix works:

 

.product__badge--soldout + .product__price {
  display: none;
}
Customer Accounts Concierge
All-in-One Customer Portal: Profile, Orders, Loyalty, Referral, Wishlist, Custom Forms, Social Login

View solution in original post

Replies 2 (2)

JaviExpress
Shopify Partner
183 16 26

This is an accepted solution.

Perhaps just a CSS fix works:

 

.product__badge--soldout + .product__price {
  display: none;
}
Customer Accounts Concierge
All-in-One Customer Portal: Profile, Orders, Loyalty, Referral, Wishlist, Custom Forms, Social Login
AdamCPT
Tourist
9 0 4

Thank you so much, it worked perfectly!