Skip to main content

Pages with Broken

All pages with tags found in the section (such as a canonical, robots directive, etc), or tags found in the (such as images, iframes, etc).

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Body specific HTML tags (such as images, divs, etc) can force the block to close early and cause important link and meta tags (such as canonical, hreflang or meta description) to be be pushed into the body where they will be ignored by search engines.

How do you fix itโ€‹

Check the pages and ensure that no head specific tags are included in the body block.

They can be located on the source page using the following CSS selector in Chrome Dev Tools > Elements search:

body link[rel='canonical' i], body meta[name='description' i], body meta[name='robots' i], body meta[name='googlebot' i], body meta[name='viewport' i], body link[rel='alternate' i]

What is the positive impactโ€‹

Important meta tags will be seen and processed by search engines as intended.

How to fetch the data for this report templateโ€‹

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
description
foundAtUrl
deeprank
level
headTagsInBodyCount
bodyTagsInHeadCount
foundInWebCrawl
foundInSitemap
foundInGoogleSearchConsole
foundInGoogleAnalytics
foundInBacklinks
foundInLogSummary
foundInList
}
}
}
}
}
}

Try in explorer