How can I remove prices from certain products on my product page?

Hello, I am trying to remove prices from a select few of my products. I create custom swimwear and want to show my product styles without the ability to purchase them. I am using the theme dawn, how would I go about removing the prices?

I attached images showing what needs to be removed, when you click on the item the price is gone but I need to remove the prices from the product page!

Thanks!

1 Like

@b17swimwear

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi @b17swimwear ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

b17swimwear.com

Thanks!

1 Like

@b17swimwear

can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.price.price--sold-out {
    display: none !important;
}
1 Like

Thank you so much this worked, however do you know how I would remove the “sold out” portion?

1 Like

@b17swimwear

yes, please try this code

span.badge.badge--bottom-left.color-inverse {
    display: none;
}