Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

iPad traffic classed as desktop due to iOS setting

Avatar

Level 5

Hi everyone!

Has anyone a solution to class iPad traffic correctly as tablet traffic following the update Apple made to by default request the desktop version of a site for certain iPads?

The article below explains the issue and provides a fix for GA, but was wondering if there was anything that could be done in Adobe Analytics?

https://51degrees.com/blog/missing-ipad-tablet-web-traffic

My understanding of the AA device type dimensions is that is relies on the user agent string, so there's not much that can be done here as if the iPad is reporting Macintosh in the user agent string, it'll be classed as a desktop device.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Sure, you can use the solution provided in that linked article.

  1. Include the code in the section "The Fix - Intel vs Apple".
  2. In your AA implementation, set the appropriate eVars. E.g. if you have setup eVar18 to be the "Device Type" and eVar19 to be the "User-Agent", then you can do this:

 

// assuming you use the code as-provided in the article
s.eVar18 = window.deviceType;
s.eVar19 = navigator.userAgent;​

 

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Sure, you can use the solution provided in that linked article.

  1. Include the code in the section "The Fix - Intel vs Apple".
  2. In your AA implementation, set the appropriate eVars. E.g. if you have setup eVar18 to be the "Device Type" and eVar19 to be the "User-Agent", then you can do this:

 

// assuming you use the code as-provided in the article
s.eVar18 = window.deviceType;
s.eVar19 = navigator.userAgent;​