A space to discuss online store customization, theme development, and Liquid templating.
Hello,
I would like to remove the sales badge from my collection page, the theme that I am currently using is refresh. Could you help me remove it?
Thank you
Hey @Thomas0071
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
I haven't published the store yet, do you want me to do that as well?https://celsiuscoldplunge.com/?_ab=0&_fd=0&_sc=1
Hey @Thomas0071
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
.card__badge {
display: none !important;
}
</style>
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
And I would like to remove where it's written 121900 and below that there is a small add to cart if you could see it on my website, is it posssible?
Hey @Thomas0071
I'm unable to locate it, can you share a screenshot for reference?
Best Regards,
Moeed
here you go
I would like to get that 12200 and add to the cart badge to be removed
It looks like you're sharing a screenshot of a draft theme, can you share the preview URL of the draft theme? If you don't know how to share it then when you preview the draft theme, at the bottom you will see a button "Share Preview", just share that link with me.
Best Regards,
Moeed
I used refresh theme for my store
Hey @Thomas0071
Keep the previous code and add this new code above </style> in the end of theme.liquid file
p.product-price {
display: none !important;
}
button.btn {
display: none !important;
}
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thank you it all worked, I got one last question, I was trying to add afterpay to the product page it allowed me to add but it didn't showed up on the page I was able to view it on the side bar, so how do I resolve that issue as well?