Skip to main content

Desktop Pages with Mobile Search Clicks

Separate desktop pages which received mobile clicks in Search Analytics of Google Search Console during the report period

Priority: Low

Impact: Negative

What issues it may causeโ€‹

The desktop pages may provide a poorer user-experience for users on a mobile device than the separate mobile alternate of the desktop page.

How do you fix itโ€‹

The mobile configuration should be reviewed to ensure the mobile alternates can be discovered, and the mobile alternate canonicalizes back to the desktop page.

What is the positive impactโ€‹

Search engine referrals on from mobile search results will land on the mobile alternate which should be an improved experience resulting in an increase in conversions.

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
searchConsoleMobileClicks
deeprank
level
separateDesktop
mobileReciprocate
searchConsoleMobileImpressions
searchConsoleMobileCtr
searchConsoleMobilePosition
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer