We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Edited code to remove H1 tags in shopify didnt work

Solved

Edited code to remove H1 tags in shopify didnt work

mythgreece
Excursionist
57 0 6

Hi, there.

I found my page have redundant H1 tag about SEARCH and CART.

Have edited the H1 class to H2 in Shopify-Section-Search and Cart tempelet.

Unfortunately, the webpage showed that these two H1 tags still remaining.

 

How could I remove the mutiple H1 tags

It seems it didnt work in shopify-theme-edit code

 

Accepted Solution (1)
DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

HI @mythgreece 

 

I've checked the homepage and found two <h1> tags located within the cart drawer. It’s likely that other pages may also have this issue. Both of these <h1> tags are incorrect:

  1. On the homepage, the <h1> should be reserved for the logo or shop name.
  2. On other pages, it should be used for the page title. 

I checked the collection page as well and found three <h1> tags: two within the cart drawer and one for the page title.

To resolve this:

  1. We need to locate the two incorrect <h1> tags and replace them with <h2> or <h3>.
  2. For the homepage, we can add the following code to ensure the shop name is marked as an <h1> tag please add it in this position https://prnt.sc/dEpdKUknI1sX

 

{% if template.name == "index" %}
  <h1 style="display: none">{{ shop.name }}</h1>
{% endif %}

 

This code should be placed right under the <body> tag.

DaisyVo_0-1735102261427.png

 

To find the two misplaced <h1> tags, you may need to look in the cart or cart-drawer.liquid files, depending on how the theme is structured. Since I’m unsure of the specific theme code, this is a general approach.

 

I hope this helps,

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 5 (5)

DaisyVo
Shopify Partner
4469 501 598

Hi @mythgreece 

 

Please share the URL of your store so I can check it further

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
mythgreece
Excursionist
57 0 6

Hi,

This is our website. Thank you!

https://www.mythgreece.com/

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

HI @mythgreece 

 

I've checked the homepage and found two <h1> tags located within the cart drawer. It’s likely that other pages may also have this issue. Both of these <h1> tags are incorrect:

  1. On the homepage, the <h1> should be reserved for the logo or shop name.
  2. On other pages, it should be used for the page title. 

I checked the collection page as well and found three <h1> tags: two within the cart drawer and one for the page title.

To resolve this:

  1. We need to locate the two incorrect <h1> tags and replace them with <h2> or <h3>.
  2. For the homepage, we can add the following code to ensure the shop name is marked as an <h1> tag please add it in this position https://prnt.sc/dEpdKUknI1sX

 

{% if template.name == "index" %}
  <h1 style="display: none">{{ shop.name }}</h1>
{% endif %}

 

This code should be placed right under the <body> tag.

DaisyVo_0-1735102261427.png

 

To find the two misplaced <h1> tags, you may need to look in the cart or cart-drawer.liquid files, depending on how the theme is structured. Since I’m unsure of the specific theme code, this is a general approach.

 

I hope this helps,

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
mythgreece
Excursionist
57 0 6

 

 

 

mythgreece
Excursionist
57 0 6

Oh, I finally find the misplace H1 tags, thank you so much.

By the way, do you know how to add characters to H1 tags. As they suggest me to do so

mythgreece_0-1735106923318.png