XenForo 2.0 itemListElement

Suphawat

Well-known member
Registered
Joined
Mar 15, 2019
Messages
64
Points
28

Reputation:

This problem appears on my site
itemListElement
Is this problem related to the plugin?

Code:
<ul class="p-breadcrumbs " itemscope itemtype="https://schema.org/BreadcrumbList">
<li class="itemListElement--hider"></li>
</ul>
555.png


@ENXF NET @BattleKing
 

Suphawat

Well-known member
Registered
Joined
Mar 15, 2019
Messages
64
Points
28

Reputation:

Fix
In PAGE_CONTAINER Search
Code:
<ul class="p-breadcrumbs "
            itemscope itemtype="https://schema.org/BreadcrumbList">

Add After
Code:
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
        <a href="https://site.com/" itemprop="item">
            <span itemprop="name">Home</span>
        </a>
        <meta itemprop="position" content="1" />
    </li>
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
385
Points
53

Reputation:

This problem appears on my site
itemListElement
Is this problem related to the plugin?

Code:
<ul class="p-breadcrumbs " itemscope itemtype="https://schema.org/BreadcrumbList">
<li class="itemListElement--hider"></li>
</ul>
View attachment 32437

@ENXF NET @BattleKing
Suphawatare you using nulumia-seotools i think it has something to do with that i took it out issue gone
 

Suphawat

Well-known member
Registered
Joined
Mar 15, 2019
Messages
64
Points
28

Reputation:

Thanos Crax

Collaborate
Collaborate
Registered
Joined
Sep 25, 2020
Messages
315
Points
73

Reputation:

Happens when breadcrumb is short or missing. The fix above will resolve it
 
Top