Skip to main content

Max Title Length

All pages with an HTML title exceeding the max length specified in Advanced settings > Report settings (default: 600 pixels).

Priority: Low

Impact: Negative

What issues it may cause

Page titles over 600 pixels may be truncated in search engine results pages, potentially negatively impacting click-through-rates and traffic.

How do you fix it

The page titles should be reviewed and customised for each page to fit within the display limit.

What is the positive impact

Search engines are more likely to use the provided title in full, potentially increasing the click-through-rate and traffic from search results pages.

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
pageTitleLengthPx
deeprank
level
pageTitleLength
duplicateTitle
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer