Hello, we’re currently using a theme from an e-commerce digital agency, but we recently unsubscribe from their services, is the SALE BAGDE that appears on our website possible to remove without asking them? Here’s one of the items that appear on sale even if it’s not…
Topic summary
A Shopify store owner wants to remove sale badges appearing on products that aren’t actually on sale. They previously used a theme from an e-commerce agency but have since unsubscribed from their services.
Solution provided:
- Navigate to Shopify Admin → Online Store → Themes → Actions → Edit Code
- Open the
style.cssfile in the Assets folder - Add CSS code to hide the sale badge elements
Current status:
The initial CSS fix successfully removed badges from product pages, but sale banners still appear on the homepage/collection pages. A follow-up CSS snippet was provided to target additional sale badge elements across collection and product pages.
The discussion remains ongoing as the store owner implements the additional code to fully resolve the homepage display issue.
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >style.css and paste this at the bottom of the file:
.product-sale-sash {
display: none;
}
Hello, Thanks for your reply it really works but in the front page it still shows the sale banner, see the video here.
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >style.css and paste this at the bottom of the file:
.product-sale-sash {
display: none;
}
.collection-product-sale-sash {
display: none;
}
.collection-product-sale-sash {
display: none;
}
