Hi, how can I remove the product pricing from my collection page: Just this collection page: https://vannivrystaat.co.za/collections/biltong we use DEBUT as theme.
Hey @vannivrystaat ,
Welcome to the Shopify community!
You can follow the instruction below:
Go to Online Store->Theme->Edit code->theme.css->paste bellow code in bottom of file.
#Collection .price {
display: none !important;
}
If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman
Hi, I pasted the code in assests -theme.css but the pricing is still showing on collection page: https://vannivrystaat.co.za/collections/biltong
Hey @vannivrystaat , Could you please try in a different CSS file?
If still didn’t work then follow below steps.
- Go to theme.liquid.
- paste below code inside head tag
Thank you I pasted the code in theme liqued, but i see all the collection pages, has no pricing.
Isnt there a way to just do this solution for one collection page?
Yes, you can replace it with the below code.
{% if request.path contains 'collections/biltong' %}
{% endif %}
If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman