You notice that the page heading for vendor and type collection pages (/collection/vendors?q=<vendor>
or /collection/types?q=<type>
) are not capitalized.
You want it capitalized:
-
Open
Snippets\collection-template.liquid
-
Look for
<h1>{{ collection.title }}</h1>
-
Replace with
<h1>{% if collection.current_type %}Type: {{ collection.title | capitalize }}{%elsif collection.current_vendor %}Vendor: {{ collection.title | capitalize }}{% else %}{{ collection.title }}{% endif %}</h1>
-
Save - You're Done!