ShipworkSite inspection
Checks
Every error, explainedGuides →
Pricing Learn Guides

Does your heading order tell a crawler what the page is about?

Headings are the outline of a page. Screen readers navigate by them, and search engines use them to understand structure. A missing H1 or a jump from H2 to H4 weakens both.

Runs the free audit, which includes this check where it applies to your site. Nothing is stored.

What this check inspects

Shipwork collects the h1 to h6 elements in document order. It reports no headings at all as an error, no H1 as an error, more than one H1 as a warning, the first heading not being an H1 as informational, level jumps of more than one as warnings, and empty headings as warnings.

What a failure means

A page with no H1 gives crawlers and assistive tech no single statement of its topic. Several H1s split that statement. Skipped levels mean the outline is broken for anyone navigating by heading.

How to fix it

  1. Give every page exactly one H1 that names what the page is.
  2. Keep the order sequential: do not jump from H2 to H4 to style a heading differently. Use CSS for size.
  3. Give each heading text that describes its section rather than a label like More or Details.
  4. Check that a theme template has not wrapped the product title in an H2 while an unrelated element is the only H1.

A typical failure, worked through

The setupA collection template uses an H1 for the collection name and renders each product tile with its own H1 because the tile component was reused from the product template.

What the check reportsThe check reports more than one H1 on the collection page, and a skipped level where the tile outline jumps from H1 to H3.

The pointOne page, one H1. Product tiles on a listing should use an H2 or H3, reserving the H1 for the page itself.

Questions

Do headings affect SEO?
They are not a magic ranking factor, but they help search engines understand the page and they are essential for accessibility. A missing H1 is a genuine content problem.
Can I have more than one H1?
HTML permits it, but the convention is one per page. Multiple H1s dilute the single clearest statement of the topic.
Why does heading order matter?
A skipped level breaks the outline a screen reader uses to jump between sections, and it signals an inconsistency in the content structure.

Related checks and guides