How to remove "Sold Out" on Refresh theme?

I am currently using the Refresh theme. My business does not sell items as I am contractor so I sell my services. The way the theme is setup I made my services a “product” instead of a “page” due to liking the design layout more. I have someone that keeps placing orders on my site even after hiding pages and tweaking some coding. Now I’ve gone to the extent of making the system count inventory and putting it at 0. The issue now is my products show a “Sold Out” bubble. It does not show this “sold out” on the product when you click it though. How can I remove this completely? Coding I’ve tried from other posts is not working on this theme. I would also like to delete the cart and ability for guest checkout and user logins if possible as I currently do not and don’t plan on actually selling anything through the website so need for accounts. Thank you.

HI @SMB84

Please share with me your store URL

Best,

Daisy

Hi Daisy,

My url is:

SMB Home Improvements, LLC

You can try this code by following these steps:

Step 1: Go to the online store ->Theme ->Edit Code.

Step 2: Find the theme.liquid file or base.css and add the following code before the tag

.badge {
 display: none !important;
}

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Hi @SMB84

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.card.card--card > .card__inner.ratio .card__content .card__badge {
    display: none !important;
}

Here is the result: https://prnt.sc/MDnxehqAyzz3

I hope this helps

Best,

Daisy

Thank you Daisy! This worked perfectly.