I've enabled the checkbox "Add current breadcrumb as structured data."
But I don't see the structured data in the source code.
What am I missing here?
I've enabled the checkbox "Add current breadcrumb as structured data."
But I don't see the structured data in the source code.
What am I missing here?
Comments
Comment #2
greg boggsIt should add a json-ld tag at the top
Comment #3
ankitjhakal commentedComment #4
ankitjhakal commentedHi All, i am able to see breadcrumb schema in head tag of the page. We just need to check this checkbox. Below code is responsible to add schema.
You can debug through it, what's wrong with you.
Comment #5
ankitjhakal commentedChanging status for now. Reopen it if you did not get your answer.
Comment #6
joe huggansThis happens if you use
{{ drupal_breadcrumb() }}in twig to print the breadcrumbs, which bypasses the block preprocess function that is what includes the schema data.It works if you use {{ drupal_block('system_breadcrumb_block') }} instead.