Help - Refresh Theme

How do i turn off the small card sale / sold out on the product thumbnail?

Hi @Tim1209

You can turn off it by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings

.badge { display: none !important; }
1 Like

Hi @Tim1209 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file base.css.
Step 3. Add this code at the end of file

.card__content .card__badge {
    display: none!important;
}

If it helps you, please like and mark it as the solution.

Best Regards

1 Like