How can I add an H1 heading to my online store's theme code?

Solved

How can I add an H1 heading to my online store's theme code?

ShoppersQlik
Excursionist
12 0 2

Hello everyone! I would like to improve my SEO score which is not bad, but it's never hurts to improve it a little. I did run a SEO analysis on store so I know my SEO score or what to improve. The only thing I can't seem to find is my H1 heading. No, not the one in the Shopify preferences. The one in the theme code. So I would like to give a H1 heading to my store but I don't know how to code at all. If somebody could send me a code snippet I can use and tell me where to insert it would be awesome!

 

Accepted Solution (1)

ErSanjay
Shopify Partner
334 20 49

This is an accepted solution.

here h1 tag for all page title I show you code shopify debut theme 

 

here is an example of a p tag with a title 

        <p>{{ page.title }}</p>
   

you can find an HTML tag and replace with h1 tag  male sure you replace correct way tag

 

 

<div class="page-width">
  <div class="grid">
    <div class="grid__item medium-up--five-sixths medium-up--push-one-twelfth">
      <div class="section-header text-center">
        <h1>{{ page.title }}</h1>
      </div>

      <div class="rte">
        {{ page.content }}
      </div>
    </div>
  </div>
</div>

 

if you are not tech then you have to hire a developer 
- if the code tag not written properly then your website not function properly 

- website looks change you replace the tag maybe but it depends on your theme.

Business Owner & Shopify Plus, Shopify app , Shopify Consultant - Full Stack Sofware Engineer
Warm regards,
Er Sanjay

If you find yourself in need of assistance with your store, don't hesitate to reach out! Feel free to send me a direct message, and I'll do my best to help you out.

View solution in original post

Replies 3 (3)

ErSanjay
Shopify Partner
334 20 49

This is an accepted solution.

here h1 tag for all page title I show you code shopify debut theme 

 

here is an example of a p tag with a title 

        <p>{{ page.title }}</p>
   

you can find an HTML tag and replace with h1 tag  male sure you replace correct way tag

 

 

<div class="page-width">
  <div class="grid">
    <div class="grid__item medium-up--five-sixths medium-up--push-one-twelfth">
      <div class="section-header text-center">
        <h1>{{ page.title }}</h1>
      </div>

      <div class="rte">
        {{ page.content }}
      </div>
    </div>
  </div>
</div>

 

if you are not tech then you have to hire a developer 
- if the code tag not written properly then your website not function properly 

- website looks change you replace the tag maybe but it depends on your theme.

Business Owner & Shopify Plus, Shopify app , Shopify Consultant - Full Stack Sofware Engineer
Warm regards,
Er Sanjay

If you find yourself in need of assistance with your store, don't hesitate to reach out! Feel free to send me a direct message, and I'll do my best to help you out.
ShoppersQlik
Excursionist
12 0 2

Thank you:)

ErSanjay
Shopify Partner
334 20 49

@ShoppersQlik  I hope you found the solution make my answer as solution and close the topics

Business Owner & Shopify Plus, Shopify app , Shopify Consultant - Full Stack Sofware Engineer
Warm regards,
Er Sanjay

If you find yourself in need of assistance with your store, don't hesitate to reach out! Feel free to send me a direct message, and I'll do my best to help you out.