Fix Crawlability Problem

  • Links in the faceted navigation are not recognized as links by Google bots.

  • HTML structure uses ul, li, label, and control elements, potentially relying on JavaScript for rendering links.

    image.png

    To fix the crawlability of links in the navigation, ensure that all links are implemented as standard HTML <a> tags with proper href attributes pointing to the correct URLs. Avoid using JavaScript or non-standard elements like <label> or <li> to simulate links, as these are not recognized by Google bots. For example, a filter option like “Hermes Birkin” should appear as <a href="/hermes/birkin">Hermes Birkin</a> instead of relying on JavaScript or checkboxes to render the link.

Comments

Leave a Reply