Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How do I remove the “Save” box? I don’t want it to show on any product pages
Solved! Go to the solution
This is an accepted solution.
Hey @Gifted1297,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
span.saving-price {
display: none !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Hey @Gifted1297,
Can you share the link to your store please? Thanks!
This is an accepted solution.
Hey @Gifted1297,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
span.saving-price {
display: none !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Thank you!!