How do I remove the price tag from featured collections only in Dawn?
I was able to remove all price tags from collections etc. by using
.collection .card-information .price{
display: none !important;
}
But I’d like to only remove the price tags from featured collections. Is that possible?
This code also did not work:
.section-template–15393943060635__featured_collection-padding .card-information { display: none
Thanks
@meisroelink - can you please share this page link where you want to remove prices?
Yes, https://boltix.nl/
I want it only removed from the home page and not from the product pages
Moeed
4
Hey @meisroelink
Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!
Best Regards,
Moeed
Moeed
5
Hey @meisroelink
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
{% if template == 'index' %}
{% endif %}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@meisroelink - please add this css to the very end of your base.css file and check
#shopify-section-template--20336266772786__96d450aa-db5b-4223-92d7-b04158d48e03 .card-information{display: none !important;}