MyBB Community Forums
Missing field 'itemListElement' - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Themes (https://community.mybb.com/forum-103.html)
+---- Forum: Theme Support (https://community.mybb.com/forum-10.html)
+---- Thread: Missing field 'itemListElement' (/thread-237599.html)



Missing field 'itemListElement' - Alioxa - 2023-02-03

im having a problem with SEO
[Image: ODvL0cC.png]

nav_bit template:
<span typeof="BreadcrumbList" property="itemListElement" class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList"><a href="{$navbit['url']}" class="crumb" rel="up" itemprop="url">{$navbit['name']}</a><span class="arrow"><span></span></span></span>



RE: Missing field 'itemListElement' - SvePu - 2023-02-03

From documentation it should look like this:

As Microdata
nav template:
<div class="navigation" itemscope itemtype="https://schema.org/BreadcrumbList">
{$nav}{$activesep}{$activebit}
</div>

nab_bit template:
<span itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"><a itemprop="item" href="{$navbit['url']}"><span itemprop="name">{$navbit['name']}</span></a></span>{$sep}



As RDFa
nav template:
<div class="navigation" vocab="https://schema.org/" typeof="BreadcrumbList">
{$nav}{$activesep}{$activebit}
</div>

nab_bit template:
<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" href="{$navbit['url']}"><span property="name">{$navbit['name']}</span></a></span>{$sep}



RE: Missing field 'itemListElement' - Alioxa - 2023-02-03

thank you i will let you know if it worked.