For better SEO I would like to change this specific title of every product from H1 to H2 lemme know if it’s possible and how can I do that Shopify theme is Dawn theme and I can’t find product-template.liquid in theme code
Hey @BeraOffice
In your sections folder, you’ll find a file called main-product.liquid. In that file just simply search for this code below and replace the H1 tags with H2
<div class="product__title" {{ block.shopify_attributes }}>
<h1>{{ product.title | escape }}</h1>
<a href="{{ product.url }}" class="product__title">
<h2 class="h1">
{{ product.title | escape }}
</h2>
</a>
</div>
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Wow, that was super fast didn’t expect that. Thanks a lot, that worked like a charm
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
