We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a page uses FAQPage as WebPage type then the FAQPage is also available in the breadcrumb as type for that page, e.g.:
{ "@context": "https://schema.org/", "@graph": [ { "@type": "FAQPage", "breadcrumb": { "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "item": { "@type": "WebPage", "@id": "https://www.domain.de/1.php" }, "name": "1", "position": "1" }, { "@type": "ListItem", "item": { "@type": "WebPage", "@id": "https://www.domain.de/1/2.php" }, "name": "2", "position": "2" }, { "@type": "ListItem", "item": { "@type": "FAQPage", "@id": "https://www.domain.de/1/2/3.php" }, "name": "3", "position": "3" } ] }, "mainEntity": { "@type": "Question", "acceptedAnswer": { "@type": "Answer", "text": "<p>...</p>" }, "name": "What is the reason of life?" } } ] }
Now the Rich Snippet Testing Tool complaints about this structure:
Field "mainEntity" is missing Field "FAQPage" is double available
Appearently, the scope is not taken into the account.
As a quick fix, a possible subtype is removed from the breadcrumb and always WebPage used.
The text was updated successfully, but these errors were encountered:
[BUGFIX] Use always WebPage as type in breadcrumb
ef34e39
Related: #101
Tested this in TYPO3 11.5.17 and now the Google tests are green again :-)
Thanks a lot!
Sorry, something went wrong.
a269be6
brotkrueml
No branches or pull requests
When a page uses FAQPage as WebPage type then the FAQPage is also available in the breadcrumb as type for that page, e.g.:
Now the Rich Snippet Testing Tool complaints about this structure:
Appearently, the scope is not taken into the account.
As a quick fix, a possible subtype is removed from the breadcrumb and always WebPage used.
The text was updated successfully, but these errors were encountered: