I am customizing the Motion theme and I can’t find where in the code to remove the default collection title text on the blocks. I’m using the Collection List section and I just want to display the collection’s main image. Does anyone know which code to add or remove to fix this?
@Jessica_McNeil - it can be removed using css, can you please share this page link where you have this text?
Hey @suyash1 ! It’s not my active theme, I’m customizing it as a draft. Would this preview link work? https://yltebioi0vehmq61-2501199.shopifypreview.com
@Jessica_McNeil - please add this css to the very end of your theme.css file and check
.index-section .skrim__title {display: none; visibility: hidden;}
Hello @Jessica_McNeil ,
You can try to do this:
Go to Online Store → Theme → Actions → Edit code
Go to Sections → collection-list.liquid → Look for the following code:
{% if section.settings.show_collection_title %}
##
{{ collection.title }}
{% endif %}
To remove the default collection title text, simply delete the code between the {% if %} and {% endif %} tags. Your modified code should look like this:
{% if section.settings.show_collection_title %}
{% endif %}
Save and preview
Hope this can help. Let us know if you need any further support.
Ali Reviews team.
That’s it! Thank you so so so much.
Hey Suyash, that worked perfectly on my homepage. Do you happen to know what code I case use to also remove the collection titles from the Collection List page?
Thanks!
Here is the page:
https://scrubinspired.ca/collections
@Jessica_McNeil - Hello, I am not able to see the titles on collection page, I believe you already have removed them.



