Is there a way to remove "sold out" under a product in the Pipeline Theme?

Is there a way to remove the words “sold out” under the product image and just have the sold button?

Here is a link to my site: https://9kmso76mstam2259-57200312371.shopifypreview.com

Hi @awirtz

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

p.product__grid__price__sold {

display: none !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hello @awirtz

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

p.product__grid__price__sold { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hi @awirtz

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.product__grid__price__sold {
display: none;
}

Thank you that worked! I appreciate the help.

Hi @awirtz

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.