Hi everyone!
I’m hoping someone can help me with instructions on how to hide the collection headings under the collection images on the home page. See pic attached. Using Dawn theme.
Online Toys For Children Australia – Arch & Ted (archandted.com)
Hi everyone!
I’m hoping someone can help me with instructions on how to hide the collection headings under the collection images on the home page. See pic attached. Using Dawn theme.
Online Toys For Children Australia – Arch & Ted (archandted.com)
Hey @MichelleClark
Kindly share your Store URL and Password if enabled
Hi @MichelleClark could you share your store URL?
Hey @MichelleClark
Follow these Steps:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css before tag on your theme.liquid file:
{% if template == ‘index’ %}
.collection-card-wrapper .card__content {display: none;}
{% else %}
Regards,
San
Hi there!
thank you for the response, it did work however the collection tiles no longer take you to the collection pages, It only shows as images. Have you got a solution for this?
Hey @MichelleClark
You can remove the previous code and add the updated one mentioned below by following the same steps:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @MichelleClark ,
.card--standard > .card__content .card__information {
padding: 0 !important;
}
.card__content .card__information .card__heading {
display: none;
}
Wonderful thank you so much!
it now removes the ability to click on the collection images and you can no longer click on a product. ![]()
That worked, however now you cant see the prices and names of products on the collection pages. I guess this is not something that is achievable
Hey @MichelleClark
Try this code
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Please replace this css before tag on your theme.liquid file:
{% if template == ‘index’ %}
.collection-card-wrapper .card__content {display: none;}
{% endif %}