Я так понял данные, прописанные в assets/ui/breadcrumbs.tpl.php устарели.
Пытался сам исправить, согласно инструкции
образец:
<ol itemscope itemtype="http://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="https://example.com/dresses"> <span itemprop="name">Dresses</span></a> <meta itemprop="position" content="1" /> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="https://example.com/dresses/real"> <span itemprop="name">Real Dresses</span></a> <meta itemprop="position" content="2" /> </li> </ol>
<?php foreach($breadcrumbs as $id=>$item){ ?> <li <?php if (!isset($item['is_last'])){ ?>itemscope itemtype="http://data-vocabulary.org/Breadcrumb"<?php } ?>> <a href="<?php html($item['href']); ?>" itemprop="url"><span itemprop="title"><?php html($item['title']); ?></span></a> <?php } else { ?> <span><?php html($item['title']); ?></span> <?php } ?> </li> <li class="sep"></li> <?php } ?> <?php $listed[] = $item['href']; ?> <?php } ?>