Skip to main content

Discouraged Viewport Types

All pages with a viewport value that is discouraged due to poor mobile compatibility, namely the minimum-scale, maximum-scale and user-scalable attributes.

Priority: Low

Impact: Negative

What issues it may causeโ€‹

These pages will a poor user experience on mobile devices and may not be categorised as Mobile Friendly by Google which may affect rankings in search engines on mobile devices.

How do you fix itโ€‹

The viewport values on the affected pages should be reviewed. If there are non-standard attributes, conduct a Google Mobile-friendly test.

What is the positive impactโ€‹

  • The user experience for mobile devices should improve resulting in an improved conversion rate.
  • Rankings for mobile search may also improve potentially leading to more traffic.

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
viewport
varyUserAgent
mobileRelAlternateUrl
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer