I would like to change product title's Heading from H1 tag to H2

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