Summary
The Product Listing Page contains multiple <h1> elements, with one containing only a product count instead of meaningful heading text, violating proper HTML semantic structure and WCAG best practices.
Steps To Reproduce
- Navigate to a Product Listing Page (e.g.,
/womens category)
- Open browser DevTools
- Search for
<h1> elements in the DOM
- Observe multiple
<h1> tags where one contains only the product count
Expected result
Each page should have a single <h1> element that serves as the main page heading. The product count should be either included within the main <h1> or marked up as supplementary text (e.g., <span>, <p>, or lower-level heading).
Actual result
The page contains multiple <h1> elements
Summary
The Product Listing Page contains multiple
<h1>elements, with one containing only a product count instead of meaningful heading text, violating proper HTML semantic structure and WCAG best practices.Steps To Reproduce
/womenscategory)<h1>elements in the DOM<h1>tags where one contains only the product countExpected result
Each page should have a single
<h1>element that serves as the main page heading. The product count should be either included within the main<h1>or marked up as supplementary text (e.g.,<span>,<p>, or lower-level heading).Actual result
The page contains multiple
<h1>elements