Solved

Where can I insert H1 heading code in my Shopify theme?

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
293 20 42

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 app developer - shopify consting - Full Stack Sofware Engineer
Er Sanjay

View solution in original post

Replies 3 (3)

ErSanjay
Shopify Partner
293 20 42

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 app developer - shopify consting - Full Stack Sofware Engineer
Er Sanjay
ShoppersQlik
Excursionist
12 0 2

Thank you:)

ErSanjay
Shopify Partner
293 20 42

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

Business Owner & Shopify app developer - shopify consting - Full Stack Sofware Engineer
Er Sanjay