Goal: Hide product titles in featured collection grids on the homepage (Dawn 11.0), without removing the image link. The price had already been hidden via CSS.
Key attempts:
Generic CSS (.collection .card__information .card__heading { opacity: 0; }) successfully hid titles but on all collections sitewide, which was not desired.
Other replies suggested adding CSS via theme.liquid, but some code blocks were incomplete in the thread.
Working solution (accepted):
Edit theme.liquid and insert CSS before the tag, wrapped in a conditional so it only runs on the homepage:
Use a Liquid check like {% if template.name == ‘index’ %} … {% endif %}.
Inside it, hide the product title element for the featured collection cards. This scopes the change to the home page only.
Outcome: Confirmed by the OP as working “perfectly” and limited to the homepage. The sitewide-hiding approach was rejected. No further issues raised; thread resolved.
Summarized with AI on December 20.
AI used: gpt-5.