26
Making Google Analytics Work for You With Custom Variables Mike Pantoliano @MikeCP

Making GA Work For You W/ Custom Variables

  • Upload
    mike-p

  • View
    103

  • Download
    0

Embed Size (px)

DESCRIPTION

 

Citation preview

Page 1: Making GA Work For You W/ Custom Variables

Making Google Analytics Work for You With Custom Variables

Mike Pantoliano@MikeCP

Page 2: Making GA Work For You W/ Custom Variables

CampaignsSearchReferrals

LocationEngagementNew vs Returning

Top ContentLanding PagesSite Search

GoalseCommerceFunnels

We All Know...

Page 3: Making GA Work For You W/ Custom Variables

Refine GA tracking w/ name-value pairs

CVs Allow Us To:

Name ValuesGender

Member Status

Converted

Language

Male, Female

Logged In, Not Logged In

False, True

English, German

Page 4: Making GA Work For You W/ Custom Variables
Page 5: Making GA Work For You W/ Custom Variables
Page 6: Making GA Work For You W/ Custom Variables
Page 7: Making GA Work For You W/ Custom Variables

Excellent Analytics http://bit.ly/izpY69

http://dis.tl/excelninja

Page 8: Making GA Work For You W/ Custom Variables

But How Do I Know What To Track?

Page 9: Making GA Work For You W/ Custom Variables

Determine What’s Important To You

Forget about Web Analytics

Page 10: Making GA Work For You W/ Custom Variables

Determine What’s Important To You

Forget about Web Analytics

Page 11: Making GA Work For You W/ Custom Variables

Determine What’s Important To You

Build and Track That!

Forget about Web Analytics

Page 12: Making GA Work For You W/ Custom Variables

<script type="text/javascript">

  var _gaq = _gaq || [];  _gaq.push(['_setAccount', 'UA-XXXXX-X']);  _gaq.push(['_trackPageview']);

  (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })();

</script>

Page 13: Making GA Work For You W/ Custom Variables

<script type="text/javascript">

  var _gaq = _gaq || [];  _gaq.push(['_setAccount', 'UA-XXXXX-X']);

_gaq.push(['_setCustomVar', name, value, opt_scope]);  _gaq.push(['_trackPageview']);

  (function() {    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);  })();

</script>

Page 14: Making GA Work For You W/ Custom Variables

_setCustomVar(index, name, value, opt_scope)

index - Required - Slot 1 through 5

name - Required

value - Required

opt_scope ‣1 (visitor-level)‣2 (session-level) ‣3 (page-level - default)Source: Google Analytics Help http://bit.ly/ljbCYZ

Page 15: Making GA Work For You W/ Custom Variables

_gaq.push(['_setCustomVar',  1,       'Section',    'Life & Style’,  3         ]);

Page 16: Making GA Work For You W/ Custom Variables

Page-Level CV Examplesopt_scope set to 3 or left

blank

Page 17: Making GA Work For You W/ Custom Variables

Product Categories and Types

Grouping Pages

Page 18: Making GA Work For You W/ Custom Variables

_gaq.push(['_setCustomVar',1,'Air Force','Air Force Cap',3]);

_gaq.push(['_trackPageview']);

Page 19: Making GA Work For You W/ Custom Variables

Other Ideas

Review Count and/or aggregate score

Character Count

Comment Count

Post Author

Page 20: Making GA Work For You W/ Custom Variables

Session-Level CV Examplesopt_scope set to 2

Page 21: Making GA Work For You W/ Custom Variables

Organic Rank Position

How-to: http://bit.ly/90zcJT

Page 22: Making GA Work For You W/ Custom Variables

_gaq.push(['_setCustomVar',2,'blue widgets','3',2]);

_gaq.push(['_trackPageview']);

Page 23: Making GA Work For You W/ Custom Variables

Landing Page Grouping

Page 24: Making GA Work For You W/ Custom Variables

Visitor-Level CV Examplesopt_scope set to 1

Page 25: Making GA Work For You W/ Custom Variables

Great For Visitor Attributes:Social vs Non-Social First

Touch

Social Media ROI

Page 26: Making GA Work For You W/ Custom Variables

Mike Pantoliano@MikeCP

Thanks!

[email protected]