Hello I would like to hide these collection names on the college on my hp. Theme dawn. Thank you
Topic summary
A user seeks to hide collection names displayed on their homepage using the Dawn theme.
Requested Information:
- Multiple respondents asked for the store URL and password (if password-protected) to provide specific solutions.
- The store link shared is https://li-yoga.com
Proposed Solution:
One detailed response suggests:
- Navigate to Online Store → Themes → Actions → Edit code
- Locate Sections → index.liquid or home.liquid
- Find the code displaying collection titles (typically
{{ collection.title }}) - Comment out or delete this line by wrapping it with
{% comment %}and{% endcomment %}tags
Status: The discussion remains open, awaiting further assistance after the store URL was provided.
following
Hi @Denisa1
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Hello @Denisa1 ,
You can try to follow these steps:
- Go to Online Store → Themes → Actions → Edit code
- Go to Sections → index.liquid or home.liquid
- Open the file and search for the code that generates and displays the collection name on your homepage. This code will depend on your theme and how it’s set up.
- Determine the specific code responsible for outputting the collection name. It might look similar to:
# {{ collection.title }}
- Comment out or delete this code to remove the collection name from the homepage. To comment out the line, add {% comment %} at the beginning and {% endcomment %} at the end of the line. The modified code will look like:
{% comment %}
# {{ collection.title }}
{% endcomment %}
Hope this can help.
Ali Reviews team.
1 Like
Thank you for sharing!
