Fixed Structured data Breadcrumblist error

Well, that's new and fairly dumb. It's a numerical index for each breadcrumb item, e.g. 1, 2, 3, 4 etc. something that can very easily be inferred simply by how many elements of that type there are in a list.

It literally wants us to output this:
HTML:
<ul class="p-breadcrumbs" itemscope itemtype="https://schema.org/BreadcrumbList">
   <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a href="/20x/index.php" itemprop="item">
         <span itemprop="name">Forums</span>
      </a>
      <meta itemprop="position" content="1" />
   </li>
   <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a href="/20x/index.php#main-category.1" itemprop="item">
         <span itemprop="name">Main category</span>
      </a>
      <meta itemprop="position" content="2" />
   </li>
   <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a href="/20x/index.php?main/" itemprop="item">
         <span itemprop="name">Main forum</span>
      </a>
      <meta itemprop="position" content="3" />
   </li>
</ul>

Seems silly, but I guess we'll have to do it...
 
I don't know, to be honest. Probably. There will, of course, be a point in the near future though where XF1 will become unsupported and the answer would be no.
 
Indeed.

I've just tested the HTML source of one of your threads on your forum @Alfa1 in the structured data testing tool and I'm not seeing any validation errors there for breadcrumbs.

1535065320805.webp
 
I've just tested the HTML source of one of your threads on your forum @Alfa1 in the structured data testing tool and I'm not seeing any validation errors there for breadcrumbs.
I am seeing the same. Its a bit difficult to find the issue as I am not exactly sure where in the old webmaster tools or the new search console I encountered the mention of breadcrumb numbers. Plus I submitted a bunch of issues to Google for review, some of which are no longer listed in the search console. So it can also have resolved itself.
 
Back
Top Bottom