Getting the most from your Google Analytics. Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools

Size: px
Start display at page:

Download "Getting the most from your Google Analytics. Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools"

Transcription

1 Session 4 Extending Google Analytics the role of programming technologies and 3rd-party tools

2 Google Analytics information collection A default amount of data is collected for every page visited in a Google Analytics enabled web site by any ordinary user of the site Google Analytics is enabled by inserting tracking code at the start of every page of the site This tracking code identifies a Google Analytics account and loads JavaScript code from Google servers The loaded JavaScript code contains lots of functions that implement the data collection by assembling information and sending it to Google servers where it is stored and used in reports Google Analytics will not work for non-ordinary users who disable JavaScript, disable cookies, or opt out using other browser add-ons or settings

3 Obtaining the tracking code to be inserted in every page Sign in to your Google Analytics account Select Admin in the top menu bar Select the desired property from the Account and Property columns Select Tracking Info and Tracking Code

4 An example of tracking code for a web site <script type="text/javascript"> var _gaq = _gaq []; _gaq.push(['_setaccount', 'UA ']); _gaq.push(['_trackpageview']); (function () { var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = (' == document.location.protocol? ' : ' + '.google-analytics.com/ga.js'; var s = document.getelementsbytagname('script')[0]; s.parentnode.insertbefore(ga, s); })(); </script> Classic ga.js

5 An example of tracking code for a web site <script> (function (i, s, o, g, r, a, m) { i ['GoogleAnalyticsObject'] = r; i [r] = i [r] function () {(i [r].q = i [r].q []).push (arguments)}, i [r].l = 1 * new Date (); a = s.createelement (o), m = s.getelementsbytagname (o)[0]; a.async = 1; a.src = g; m.parentnode.insertbefore (a, m) }) (window, document, 'script', '// 'ga'); ga ('create', 'UA ', 'auto'); ga ('send', 'pageview'); </script> Universal analytics.js

6 The Google Analytics platform Google Analytics user Web site users

7 What information is assembled and sent to Google Server system information Local system information, including network related details Information stored in cookies No Personal personal information about about the the user user

8 Sending data to Google using the _utm.gif technique This is a simple web request for a one pixel gif file on Google servers, made by JavaScript code running in the web site page on the user's browsing device whenever any type of hit is recorded The requested web address contains a long series of query parameters, the query string, that together provide all of the assembled information to be sent back and stored on Google servers

9 Google Analytics cookies Cookies act as local data collectors on the user's device as the user interacts with a web page They store information from page to page during a session and retain some of that information between sessions, typically: determining a session start or end identifying unique users recording traffic sources and navigation storing custom variables Classic Analytics uses five cookies, Universal Analytics uses one

10 Collecting extra data for reports There are occasions when it is desirable to monitor, measure, or analyse something specific to a particular web site something that cannot be seen using the default amount of collected data On such occasions simple JavaScript programming in a web page can be added to call some of the functions that are loaded from Google at the start of each web page of the site often referred to as the Google Analytics data collection API These functions will register additional hits in Google Analytics reports to correspond with particular user interactions on a web page

11 Different types of hits that can be recorded A page view, which may be real or virtual An event that represents a specific user interaction occurrence A custom variable value is set A particular social media activity occurs A timing value is recorded } Universal Analytics only All of above are now also referred to as tracking beacons in Google Analytics

12 Tracking a page view using _trackpageview Classic ga.js JavaScript methods are normally pushed into an array _gaq that serves as a queue from which each item is executed in turn after all code has been fully loaded into the page The most basic tracking of a web page view is enabled using a call to the _trackpageview method with an optional page URL parameter: _gaq.push (['_trackpageview']); _gaq.push (['_trackpageview', /home/startpage ]); Classic ga.js

13 Tracking a page view using send The Universal Analytics tracking code creates a JavaScript global object named ga in the web page that is used to invoke other Google Analytics JavaScript methods One of the most common of these methods for recording hits is send It is used to track a page view, with optional override of the page URL: ga ('send', 'pageview'); ga ('send', 'pageview', /home/startpage ); Universal analytics.js

14 Tracking a page visit

15 Using virtual page view hits to track file downloads File downloads from a web page are not automatically tracked by Google Analytics as they are not web pages with tracking code However an additional virtual page view can be recorded each time a download link is selected by including a call to _trackpageview (Classic ga.js) or send (Universal analytics.js) on the download link: <a href=" onclick="_gaq.push (['_trackpageview', '/download/file01']);"> myfile01 </a> <a href=" onclick="ga (send, pageview, '/download/file01');"> myfile01 </a>

16 Tracking all file downloads using entourage.js Avoid the tedium of adding JavaScript code to every file link by using another piece of JavaScript to do it for you! By loading the entourage.js JavaScript code at the start of the page, all document links will have necessary tracking code added automatically so that the downloads appear in the usual Behavior reports The entourage.js JavaScript code allows the user to specify what download file extensions should have tracking code added (so limiting the virtual page views to the desired set of downloads)

17 Tracking all file downloads using entourage.js

18 Event tracking using _trackevent Particular visitor interaction on a web page can be recorded and displayed as an event in the usual Behavior reports by invoking the _trackevent method as the event occurs on the page: _gaq.push (['_trackevent', 'category', 'action', 'label', value, noninteraction]) category (required) the name you supply for the group of objects you want to track action (required) a string that is commonly used to define the type of user interaction label (optional) an optional string to provide additional dimensions to the event data value (optional) an integer used to provide numerical data about the user event non-interaction (optional) set to true to indicate that the event hit will not be used in bounce-rate calculation Classic ga.js

19 Event tracking using send The send method can be used to track an event hit type and record any particular user interaction Parameters have exactly the same meaning as with the Classic ga.js _trackevent method: ga ('send', 'event', 'category', 'action', 'label', value, noninteraction) category (required) the name you supply for the group of objects you want to track action (required) a string that is commonly used to define the type of user interaction label (optional) an optional string to provide additional dimensions to the event data value (optional) an integer used to provide numerical data about the user event non-interaction (optional) set to true to indicate that the event hit will not be used in bounce-rate calculation Universal analytics.js

20 Event tracking example Using a simple form to poll a user's interest on a web page, track the values of any responses as events

21 Event tracking example <input type="radio" id="vv1" value="positive"> Yes <input type="radio" id="vv0" value="negative"> No <input type="submit" value="submit" onclick=" var vvote = document.getelementbyid ('vv1').checked? document.getelementbyid ('vv1').value : "> (document.getelementbyid ('vv0').checked? document.getelementbyid ('vv0').value : 0); var vvalue = (vvote == 'positive')? 1 : 0; if (vvote) { alert ('Thanks for the useful ' + vvote + ' feedback!'); _gaq.push (['_trackevent', 'User feedback', 'Submitted interest in page', vvote, vvalue, 0]); } category action value label Set variable vvote to either "positive" or "negative" depending on which option was selected, and 0 if none selected Set variable vvalue to 1 if vvote is "positive", otherwise set to 0 Classic ga.js

22 Event tracking example <input type="radio" id="vv1" value="positive"> Yes <input type="radio" id="vv0" value="negative"> No <input type="submit" value="submit" onclick=" var vvote = document.getelementbyid ('vv1').checked? document.getelementbyid ('vv1').value : (document.getelementbyid ('vv0').checked? document.getelementbyid ('vv0').value : 0); var vvalue = (vvote == 'positive')? 1 : 0; if (vvote) { alert ('Thanks for the useful ' + vvote + ' feedback!'); ga ('send', 'event', 'User feedback', 'Submitted interest in page', vvote, vvalue, 0); } "> Universal analytics.js

23 Event tracking report

24 Recording custom variables with _setcustomvar You can set up custom variables with values that are recorded and appear in reports to reveal particular things about users activity on pages of your site Relevant reports appear in the Audience main reports section The _setcustomvar method is used as follows: _gaq.push (['_setcustomvar', index, 'name', 'value', scope]) index the slot for the custom variable (required), this is a number whose value can range from 1-5, inclusive name the name for the custom variable (required), this is a string that identifies the variable and appears in reports value the value for the custom variable (required) scope the scope for the custom variable (optional), 1 = visitor-level, 2 = session-level, 3 = page-level (default) Classic ga.js

25 Recording custom variables with custom dimensions and set Universal analytics.js no longer supports setting custom variables although Universal reporting still displays historical custom variables information in the relevant Audience Custom report Universal allows the addition of custom dimensions up to 20 for each property managed through the property Admin Custom Definitions option Each new dimension is created with an appropriate name and assigned a numeric index which increments from 1 to 20 A value for the new dimension can be provided on any page using JavaScript with the set method, identifying the dimension with label 'dimension' and the relevant index as a suffix: ga ('set', 'dimensionx', 'value') Universal analytics.js

26 The Universal custom dimension management option Universal analytics.js

27 Custom variables example For a site with a registered user login facility, it may be desirable to record the userid of a user that has logged in, then review logins of users over time The value of a particular userid will be available to the code that is generating the web page as, say, variable $userid This can be recorded in Google Analytics data using _setcustomvar (Classic ga.js) or set (Universal analytics.js) using one of the following in the page: <script type="text/javascript"> _gaq.push (['_setcustomvar', 5, 'visitoruserid', $userid, 1]); </script> <script type="text/javascript"> ga ('set', 'dimension1', $userid); </script> index of custom variable seen in Custom Variables report in Audience main report section index of custom dimension with assumption that it has been created for the property seen in many reports

28 Custom variables example

29 Helpful third party extensions to Google Analytics In addition to entourage.js (automatically inserting JavaScript around links) there many other scripts, applications, configuration files and other software gadgets to enable easier management and richer functionality in your use of Google Analytics So sometimes a ready-made solution may be available to fulfill your requirements, removing the need for manual custom programming The largest single collection of these Google Analytics extensions can be found in the Google Analytics app gallery

30 App Gallery

31 Getting the most from your Google Analytics App gallery example mobile analytics Keep track of what's happening on your site when on the move

32 App gallery example infographics Use a service in the cloud to send you weekly reports using an infographic style

33 Using Google Analytics with other Google services Google allows Google Analytics reporting to be used with other Google services, most notably Google's Webmaster Tools and Adwords These extensions to the available reports in Google Analytics are enabled by connecting the different Google service accounts, and in so doing authorising access to further information about a web site

34 Google Webmaster Tools Google's Webmaster Tools provides an authorised owner of a web site access to information about how that web site has performed on Google's search engine primarily regarding what search words have caused the site to appear in search results and how often the site has been selected in results Connecting a Google Analytics property to the same site in Webmaster Tools activates a number of extra reports under the title Search Engine Optimization in the Acquisition reports section that provide tangible metrics on how well Google's search engine is bringing users to your web site To connect: add and verify the web site at in Google Analytics select Webmaster Tools Settings in the property Admin Property Settings and follow instructions

35 Example SEO report using Webmasters Tools data

36 Google Adwords Adwords is a Google service that involves privileged visibility in Google search results listings whenever particular paid for adwords are searched for by any search engine user Connecting a Google Analytics property to a corresponding Adwords account activates extra reports under title Adwords in the Acquisition reports section These provide metrics on how effectively the paid for search words are bringing users to your web site To connect: in Google Analytics select Adwords Linking in the property Admin create a new link group and follow instructions

37 Example of Adwords keyword report

38 Summary Google Analytics data collection The tracking code inserted in every page What information is assembled and sent to Google Google Analytics cookies and the _utm.gif data transfer technique Collecting extra data using JavaScript methods Google Analytics app gallery extensions for enhanced functionality Google webmaster tools connection for extra SEO reports Google adwords connection for viewing paid for keyword effectiveness

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina Five Minute Version What are Events? What are Custom Variables? Definitions & Differences Understanding

More information

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina What you re about to sit through GA reports are ready to be customized! What are Custom Variables?

More information

Is Your Google Analytics Data Accurate?

Is Your Google Analytics Data Accurate? Is Your Google Analytics Data Accurate? September 18, 2013 Presented By Amin Shawki Analytics Manager Andy Gibson Digital Marketing Analyst 1. 1 Billion+ pageviews/year in sites analyzed and supported

More information

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement.

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement. Analytics version 1 Introduction Web analytics is used to track, measure, collect, report and analyse web data in order to understand and optimise usage of web properties. These properties could include

More information

ANALYTICS. Geek Speak for the Technically Meek

ANALYTICS. Geek Speak for the Technically Meek ANALYTICS Geek Speak for the Technically Meek ABOUT ME Ben Pritchard Interactive Technology Director at bpritchard@garrisonhughes.com @pixelfumes www.garrisonhughes.com ABOUT Responsive Website Design

More information

10 Analytics & Optimization. From Code to Product gidgreen.com/course

10 Analytics & Optimization. From Code to Product gidgreen.com/course 10 Analytics & Optimization From Code to Product gidgreen.com/course Lecture 10 Introduction Data collection Website metrics Optimization Competitive intelligence Surveys Tools and books From Code to Product

More information

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS Michael Sheehan Lake Superior Libraries Symposium, WITC Superior June 1, 2012 A LITTLE ABOUT ME AND MY EMPLOYER Mike Sheehan is the Assistant Director at

More information

Google Analytics for Government Second Edition

Google Analytics for Government Second Edition Google Analytics for Government Second Edition By Sarah Kaczmarek, May 2014 GOOGLE ANALYTICS FOR GOVERNMENT Second Edition Table of Contents PART 1: INTRODUCTION... 2 WELCOME TO THE SECOND EDITION OF GOOGLE

More information

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com TOP 10 things Your Association Should Measure In Google Analytics 1 weblinkinternational.com TABLE OF CONTENTS Welcome.... 3 Metric 1 «Audience Location.... 4 Metric 2 «Audience Engagement....... 6 Metric

More information

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: November 2014 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of

More information

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Google Analytics Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Agenda Google Analytics A Whirl Wind Tour of Onsite SEO Google Analytics and SEO Google Analytics

More information

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS How to use Google Analytics to track activity on your website and help get the most out of your website 2 April 2012 Version 1.0 Contents Contents 2 Introduction

More information

Future Proof Analytics Techniques for Web 2.0 Applications Near Real Time Support Techniques Constantine J. Aivalis* - Technological Education Institute Crete, Anthony C. Boucouvalas ** - University of

More information

Analytics. Mark Zhuravsky Charles Thompson. January 14, 2014

Analytics. Mark Zhuravsky Charles Thompson. January 14, 2014 Analytics Mark Zhuravsky Charles Thompson January 14, 2014 Your Website as the Hub It s also the Starting Point Ability to create CTA landing pages Google Analytics code allows you to see activity, but

More information

A Beginner s Guide To. google analytics

A Beginner s Guide To. google analytics A Beginner s Guide To google analytics executive summary Expectations have risen for marketing departments abilities to track, measure and optimize different marketing operations. In today s world of

More information

1 Which of the following questions can be answered using the goal flow report?

1 Which of the following questions can be answered using the goal flow report? 1 Which of the following questions can be answered using the goal flow report? [A] Are there a lot of unexpected exits from a step in the middle of my conversion funnel? [B] Do visitors usually start my

More information

WordPress Guide. v. 1.7. WorldTicket WordPress manual, 16 MAY 2014 1 / 23

WordPress Guide. v. 1.7. WorldTicket WordPress manual, 16 MAY 2014 1 / 23 WordPress Guide v. 1.7 WorldTicket WordPress manual, 16 MAY 2014 1 / 23 Table of Contents 1 Introduction... 4 1.1 Document Information... 4 1.1.1...... 4 1.2 Functional Overview of Booking Flow... 5 1.3

More information

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: May 2012 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of the latest

More information

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director Demystifying Digital Introduction to Google Analytics Mal Chia Digital Account Director @malchia @communikateetal Slides will be emailed after the session 2 Workshop Overview 1. Introduction 2. Getting

More information

SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc.

SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc. SkyGlue Technology Inc., all rights reserved SkyGlue User Manual SkyGlue Technology Inc. 1 Contents 2 What is SkyGlue?... 3 3 Why SkyGlue?... 3 4 Event Tracking Basics... 4 4.1 Google Event Tracking Overview...

More information

Implementing Sub-domain & Cross-domain Tracking A Complete Guide

Implementing Sub-domain & Cross-domain Tracking A Complete Guide Implementing Sub-domain & Cross-domain Tracking A Complete Guide Prepared By techbythebay.com 1 Contents 1. Sub Domain & Cross Domain Tracking for GA (asynchronous) I. Standard HTML/JavaScript Implementation

More information

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015

Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Canadian Association for Research Libraries Toronto, Ontario 14 October 2015 Introductions Help & Learning Standard Reports Audience Traffic Sources Content Behaviour Measuring Value Basic Filtering &

More information

Getting the most from your Google Analytics

Getting the most from your Google Analytics Session 2 Exploration main reports in more detail Real-Time reports Real-Time reports Use Real-Time to monitor user activity as it happens see each pageview being reported seconds after it occurs how many

More information

Google Analytics Playbook. Version 0.92

Google Analytics Playbook. Version 0.92 Version 0.92 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording,

More information

any software vendor using a 3rd party shopping cart

any software vendor using a 3rd party shopping cart Version 2.0 - last updated: August 2010 The Analytics industry has evolved a great deal since the last version of this book. Tools got better & faster including amazing features like Segmentation or Intelligence

More information

Best SEO Practices for Online Gambling Sites

Best SEO Practices for Online Gambling Sites Best SEO Practices for Online Gambling Sites Table of Contents Introduction... 3 Stages of an SEO campaign: Keyword research... 4 On-site SEO. Technical issues... 6 Link building... 11 Analytics and tracking...

More information

Usage Tracking for IBM InfoSphere Business Glossary

Usage Tracking for IBM InfoSphere Business Glossary Usage Tracking for IBM InfoSphere Business Glossary InfoSphere Business Glossary Version 8.7 and later includes a feature that allows you to track usage of InfoSphere Business Glossary through web analytics

More information

The Practical Guide To Google Analytics For Businesses

The Practical Guide To Google Analytics For Businesses The Practical Guide To Google Analytics For Businesses Why Analytics?... 6 1. Where to find the best data:... 7 Google Analytics Reports Standard Reports... 7 Traffic Sources... 7 The All Traffic Report...

More information

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174

Index. AdWords, 182 AJAX Cart, 129 Attribution, 174 Index A AdWords, 182 AJAX Cart, 129 Attribution, 174 B BigQuery, Big Data Analysis create reports, 238 GA-BigQuery integration, 238 GA data, 241 hierarchy structure, 238 query language (see also Data selection,

More information

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS IS ABOUT INCREASING REVENUE WHAT WE LL COVER Why should you use Asynchronous code What are

More information

The un-official Google Analytics How To PDF guide to:

The un-official Google Analytics How To PDF guide to: The un-official Google Analytics How To PDF guide to: - Help you set up and configure Google Analytics - Use advanced features like event tracking, filters and segments - Build custom reports and dashboards

More information

White paper: Google Analytics 12 steps to advanced setup for developers

White paper: Google Analytics 12 steps to advanced setup for developers White paper: Google Analytics 12 steps to advanced setup for developers We at Core work with a range of companies who come to us to advises them and manage their search and social requirements. Dr Jess

More information

IMRG Peermap API Documentation V 5.0

IMRG Peermap API Documentation V 5.0 IMRG Peermap API Documentation V 5.0 An Introduction to the IMRG Peermap Service... 2 Using a Tag Manager... 2 Inserting your Unique API Key within the Script... 2 The JavaScript Snippet... 3 Adding the

More information

Google Analytics and Google Analytics Premium: limits and quotas

Google Analytics and Google Analytics Premium: limits and quotas Table Of Contents Data collection & Processing limits Accounts and Profiles Reports Admin Area Google Analytics data fields Lengths Google Analytics API Data collection & Processing limits 10 million hits

More information

Integrating KIMBIA form widget data with Google Analytics. What's Inside? KIMBIA. What s required...

Integrating KIMBIA form widget data with Google Analytics. What's Inside? KIMBIA. What s required... KIMBIA 1050 E. 11th St., Suite 00 Austin, TX 7870 [W] 51.474.4447 [F] 51.474.4448 info@kimbia.com Integrating KIMBIA form widget data with Google Analytics revision 10/15/09 What's Inside? Overview...

More information

Introduction to Google Analytics

Introduction to Google Analytics Introduction to Google Analytics Information Services 19 June 2015 Helen Varley Sargan I don t profess to be an expert much of what I do with Google Analytics has been learned on a need to know basis and

More information

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Contents Foreword Introduction xix xxi Part I Measuring Success 1 Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Website Measurement Why Do This?... 4 Information Web Analytics

More information

Intell-a-Keeper Reporting System Technical Programming Guide. Tracking your Bookings without going Nuts! http://www.acorn-is.

Intell-a-Keeper Reporting System Technical Programming Guide. Tracking your Bookings without going Nuts! http://www.acorn-is. Intell-a-Keeper Reporting System Technical Programming Guide Tracking your Bookings without going Nuts! http://www.acorn-is.com 877-ACORN-99 Step 1: Contact Marian Talbert at Acorn Internet Services at

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

Administrator's Guide

Administrator's Guide Search Engine Optimization Module Administrator's Guide Installation and configuration advice for administrators and developers Sitecore Corporation Table of Contents Chapter 1 Installation 3 Chapter 2

More information

Google Analytics Social Plug-in Tracking

Google Analytics Social Plug-in Tracking smart. uncommon. ideas. Google Analytics Social Plug-in Tracking The Ultimate Guide {WEB} MEADIGITAL.COM {TWITTER} @MEADIGITAL {BLOG} MEADIGITAL.COM/CLICKOSITY {EMAIL} INFO@MEADIGITAL.COM In June 2011,

More information

Google Analytics workbook

Google Analytics workbook Google Analytics workbook Sub-title here Google Analytics workbook Overview Google Analytics is just one of many tools available for tracking activity on a website or mobile application. It provides users

More information

Google Analytics Guide

Google Analytics Guide Google Analytics Guide 1 We re excited that you re implementing Google Analytics to help you make the most of your website and convert more visitors. This deck will go through how to create and configure

More information

Getting Started with Google Analytics 7 Easy but comprehensive steps

Getting Started with Google Analytics 7 Easy but comprehensive steps Getting Started with Google Analytics Right, so you have a shiny new website or you have a site that has been up and running for a while now that s great. The hard work is done and the leads and sales

More information

Google Analytics Training

Google Analytics Training Google Analytics Training sponsored by Clockwork is a digital firm creating technology solutions that really work. Your vision is our mission. Strategy Design Technology Content Search Engine Optimization

More information

Google Analytics Audit. Prepared For: Xxxxx

Google Analytics Audit. Prepared For: Xxxxx Google Analytics Audit Prepared For: Xxxxx Please Note: We have edited all images and some text to protect the privacy of our client. 1. General Setup 3 1.1 current analytics tracking code 3 1.2 test purchase

More information

Login with Amazon. Getting Started Guide for Websites. Version 1.0

Login with Amazon. Getting Started Guide for Websites. Version 1.0 Login with Amazon Getting Started Guide for Websites Version 1.0 Login with Amazon: Getting Started Guide for Websites Copyright 2016 Amazon Services, LLC or its affiliates. All rights reserved. Amazon

More information

INTRO TO. Brock Murray Twitter - @SEOBrock / Instagram - @seoplus

INTRO TO. Brock Murray Twitter - @SEOBrock / Instagram - @seoplus INTRO TO Brock Murray Twitter - @SEOBrock / Instagram - @seoplus ABOUT BROCK MURRAY Started as a web designer in 2002 Designed hundreds of websites for local businesses Established seoplus+ in 2012 Trainer

More information

Google Analytics Health Check

Google Analytics Health Check Google Analytics Health Check Summary Google Analytics (GA) is a free tool for recording information about visitors and actions on your website or mobile application. Once the Google Analytics tracking

More information

Google Analytics Universal Guide

Google Analytics Universal Guide Google Analytics Universal Guide BEST PRACTICES FOR IMPLEMENTATION AND REPORTING Eric Fettman Google Analytics Universal Guide - Best Practices for Implementation and Reporting - March 2014 1 Table of

More information

Web Analytics. FAQs MONITOR, ANALYZE, TRACK. Page 1

Web Analytics. FAQs MONITOR, ANALYZE, TRACK. Page 1 Web Analytics FAQs MONITOR, ANALYZE, TRACK Page 1 Web Analytics FAQs Monitor, Analyze, Track This document contains a list of frequently asked questions on the following areas of the Web Analytics system:

More information

Web Analytics with Google Analytics (GA) TRAINING MANUAL FOR WEB EDITORS

Web Analytics with Google Analytics (GA) TRAINING MANUAL FOR WEB EDITORS Web Analytics with Google Analytics (GA) TRAINING MANUAL FOR WEB EDITORS LSA WEB SERVICES Google Analytics Training Manual LSA Web Services Haven Hall, Suite 6051 505 South State Street Ann Arbor, MI 48109-1045

More information

About Google Analytics

About Google Analytics About Google Analytics v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

Google AdWords customers can see their Analytics data from inside their AdWords account

Google AdWords customers can see their Analytics data from inside their AdWords account Johannes Spruijt Free service offered by Google that generates detailed statistics about the visitors to a website. A premium version is also available for a fee. The product is aimed at marketers as opposed

More information

A PRESENTATION BY RITESH GUPTA

A PRESENTATION BY RITESH GUPTA A PRESENTATION BY RITESH GUPTA WEB ANALYTICS next 2 Deep Dive 01 into Web Analytics Web Analytics < 3 Digital Analytics / Measurability Caution: The addictive adrenaline of analzying website data, interpreting

More information

Tracking Code Migration Guide

Tracking Code Migration Guide Tracking Code Migration Guide Switching from urchin.js to ga.js Beta Version 2007 Google 2007 Google 1 Contents What's changing? Everything. Why switch to the? Can I stay with urchin.js? Are the new and

More information

User Manual. Online Bookstores built for Online Booksellers CHRISLANDS.COM

User Manual. Online Bookstores built for Online Booksellers CHRISLANDS.COM CHRISLANDS.COM Online Bookstores built for Online Booksellers User Manual Chrislands.com 195 University Park Drive Suite 107 Edwardsville,IL 62025 info@chrislands.com Table of Contents i. Getting Started

More information

Technical Brief: Google Analytics Integration

Technical Brief: Google Analytics Integration Technical Brief: Google Analytics Integration Convirza for Call Quality Monitoring and Google Analytics integration allows users to combine online web analytics with call details from Convirza for CQM

More information

!!!!!!!! Startup Guide. Version 2.7

!!!!!!!! Startup Guide. Version 2.7 Startup Guide Version 2.7 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

Optimize Your Drupal Site with Google Analytics

Optimize Your Drupal Site with Google Analytics Optimize Your Drupal Site with Google Analytics July 22, 2015 Mike Nescot Web Ops & Security Manager JBS International, Inc. Nick Grace Front-end Dev Manager JBS International, Inc. JBS International,

More information

BUSINESS CHICKS, INC. Privacy Policy

BUSINESS CHICKS, INC. Privacy Policy BUSINESS CHICKS, INC. Privacy Policy Welcome to businesschicks.com, the online and mobile service of Business Chicks, Inc. ( Company, we, or us ). Our Privacy Policy explains how we collect, use, disclose,

More information

英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his

英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his 英 文 考 題 1. You are an online seller. A consumer purchases a product to be delivered to his office. He then makes another order to be delivered to his mother s home. How many purchases will be shown in

More information

Google Analytics Integration Guide

Google Analytics Integration Guide XTRABANNER Google Analytics Integration Guide U-BTech Solutions LTD. INTRODUCTION Created: 18-Oct-2012 Updated: 23-Mar-2014 We are excited to announce that XtraBanner version 2.0 now supports integration

More information

Virtual Spirits control panel V5

Virtual Spirits control panel V5 Virtual Spirits control panel V5 Tutorial let s get started Document version 5.4 VSpirits Technologies Ltd. 2013 All Rights Reserved. In this guide, you'll learn how to: 1. Design my chat agent How can

More information

Cloud Fulfilment. Magento Integration Document. For API Version: 1.0. Document Version 1.0 June 2013. Cloud Fulfilment Magento Integration Version 1.

Cloud Fulfilment. Magento Integration Document. For API Version: 1.0. Document Version 1.0 June 2013. Cloud Fulfilment Magento Integration Version 1. Cloud Fulfilment Magento Integration Document For API Version: 1.0 Document Version 1.0 June 2013 Contents This Document... 3 Introduction...3 1. Create a User Role Enabling Cloud Fulfilment to Connect

More information

2013 Google Analytics Summit Highlights. Theme of 2013 Google Analytics (GA) Summit: Access, Empower, Act

2013 Google Analytics Summit Highlights. Theme of 2013 Google Analytics (GA) Summit: Access, Empower, Act 2013 Google Analytics Summit Highlights Theme of 2013 Google Analytics (GA) Summit: Access, Empower, Act Access Product/Feature: Google Tag Manager (GTM) Update: Auto-event tracking What this means: No

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

More information

Online sales management software Quick store setup. v 1.1.3

Online sales management software Quick store setup. v 1.1.3 Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure

More information

Google Analytics Guide. A step by step guide to a best practice implementation of Google Analytics

Google Analytics Guide. A step by step guide to a best practice implementation of Google Analytics Google Analytics Guide A step by step guide to a best practice implementation of Google Analytics August 2012 Contents This document is an unofficial guide to a best practice standard implementation of

More information

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

GOOGLE ANALYTICS. For Objective SEO and Diagnostics

GOOGLE ANALYTICS. For Objective SEO and Diagnostics GOOGLE ANALYTICS For Objective SEO and Diagnostics ALYCIA MITCHELL DIGITAL MARKETING MANAGER AT SUCURI Objective Objective Judgment influenced by personal feelings or opinions in considering and representing

More information

Google Analytics Health Check Laying the foundations for successful analytics and optimisation

Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Property [UA-1234567-1] Domain [Client URL] Date of Review MMM YYYY Consultant [Consultant

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com

Measure What Matters. don t Track What s Easy, track what s Important. kissmetrics.com 1 2 3 4 5 6 Measure What Matters don t Track What s Easy, track what s Important kissmetrics.com Measure What Matters A lot of technologies seem to be one step behind what we really want. And the analytics

More information

Using Google Analytics

Using Google Analytics Using Google Analytics Overview Google Analytics is a free tracking application used to monitor visitors to your website in order to provide site designers with a fuller knowledge of their audience. At

More information

Introduction. Regards, Lee Chadwick Managing Director

Introduction. Regards, Lee Chadwick Managing Director User Guide Contents Introduction.. 2 Step 1: Creating your account...3 Step 2: Installing the tracking code.. 3 Step 3: Assigning scores to your pages.....4 Step 4: Customising your lead bands..5 Step

More information

Google Analytics Basics

Google Analytics Basics Google Analytics Basics Contents Google Analytics: An Introduction...3 Google Analytics Features... 3 Google Analytics Interface... Changing the Date Range... 8 Graphs... 9 Put Stats into Context... 10

More information

Startup Guide. Version 2.3.9

Startup Guide. Version 2.3.9 Startup Guide Version 2.3.9 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

Engelske slider. Menyene i Google Analy2cs

Engelske slider. Menyene i Google Analy2cs Engelske slider Menyene i Google Analy2cs Import into AdWords Google Analytics Dashboard The Dashboard is your configurable opening screen for Analytics Management Understand what the Google Analytics

More information

InPost UK Limited GeoWidget Integration Guide Version 1.1

InPost UK Limited GeoWidget Integration Guide Version 1.1 InPost UK Limited GeoWidget Integration Guide Version 1.1 Contents 1.0. Introduction... 3 1.0.1. Using this Document... 3 1.0.1.1. Document Purpose... 3 1.0.1.2. Intended Audience... 3 1.0.2. Background...

More information

Google Analytics. Web Skills Programme

Google Analytics. Web Skills Programme Google Analytics Web Skills Programme Google - some facts Google search handles over 1 billion searches per day 7.2 billion daily page views 87.8 billion monthly worldwide searches conducted on Google

More information

ExtraHop and AppDynamics Deployment Guide

ExtraHop and AppDynamics Deployment Guide ExtraHop and AppDynamics Deployment Guide This guide describes how to use ExtraHop and AppDynamics to provide real-time, per-user transaction tracing across the entire application delivery chain. ExtraHop

More information

Uploading Ad Cost, Clicks and Impressions to Google Analytics

Uploading Ad Cost, Clicks and Impressions to Google Analytics Uploading Ad Cost, Clicks and Impressions to Google Analytics This document describes the Google Analytics cost data upload capabilities of NEXT Analytics v5. Step 1. Planning Your Upload Google Analytics

More information

The Anatomy of Great Analytics

The Anatomy of Great Analytics The Anatomy of Great Analytics Stockholm / 2015-08-26 / Alexander Bergqvist Alexander Bergqvist Sr. Analytics Consultant Klikki AB 7+ years of experience in digital marketing and analytics Twitter: @AlexanderBergq

More information

Integrating LivePerson with Salesforce

Integrating LivePerson with Salesforce Integrating LivePerson with Salesforce V 9.2 March 2, 2010 Implementation Guide Description Who should use this guide? Duration This guide describes the process of integrating LivePerson and Salesforce

More information

Google Sites From the Ground Up

Google Sites From the Ground Up Table of Contents Web Publishing Basics...3 Parental Permission...3 Protection...3 Creating a Google Site...4 Basic Page Content...6 Update Content...6 Previewing the Page...6 Email Contact Link...7 Sidebar

More information

ONLINE PRIVACY POLICY

ONLINE PRIVACY POLICY ONLINE PRIVACY POLICY The City of New Westminster is committed to protecting your privacy. Any personal information collected, used or disclosed by the City is in accordance with the Freedom of Information

More information

What s New in Ifbyphone Version 3.2?

What s New in Ifbyphone Version 3.2? What s New in Ifbyphone Version 3.2? Ifbyphone Version 3.2 includes a variety of new and improved applications and features. We ve integrated your feedback into enhancements including new Home Page Dashboards,

More information

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library

Decision-making using web analytics. Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library Decision-making using web analytics Rachell Underhill, UNC Grad School Anita Crescenzi, UNC Health Sciences Library For today Analytics at The Graduate School and the Health Sciences Library What analytics

More information

Embedding tracking code into IAS

Embedding tracking code into IAS Embedding tracking code into IAS Author: GeoWise User Support Released: 23/11/2011 Version: 6.4.4 Embedding tracking code into IAS Table of Contents 1. Introduction... 1 2. Pre-requisites... 1 2.1. Sign

More information

AIRTEL WEBSITE BUILDER

AIRTEL WEBSITE BUILDER AIRTEL WEBSITE BUILDER TROUBLE SHOOTING GUIDE https://airtelwebsitebuilder.com 1 User Your Own Image Support Issue: I can't insert my own logo / main image (Simple Option) Click Change / Edit template.

More information

MASTERTAG DEVELOPER GUIDE

MASTERTAG DEVELOPER GUIDE MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...

More information

LiveText for Salesforce Quick Start Guide

LiveText for Salesforce Quick Start Guide LiveText for Salesforce Quick Start Guide (C) 2014 HEYWIRE BUSINESS ALL RIGHTS RESERVED LiveText for Salesforce Quick Start Guide Table of Contents Who should be looking at this document... 3 Software

More information

Working with Indicee Elements

Working with Indicee Elements Working with Indicee Elements How to Embed Indicee in Your Product 2012 Indicee, Inc. All rights reserved. 1 Embed Indicee Elements into your Web Content 3 Single Sign-On (SSO) using SAML 3 Configure an

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

We all need to be able to capture our profit generating keywords and understand what it is that is adding the most value to our business in 2014.

We all need to be able to capture our profit generating keywords and understand what it is that is adding the most value to our business in 2014. Running a business that uses the internet means that you need to understand and capture the information that drives traffic to your website and most importantly sales and Google Analytics provides this

More information

Top 3 Marketing Metrics You Should Measure in Google Analytics

Top 3 Marketing Metrics You Should Measure in Google Analytics Top 3 Marketing Metrics You Should Measure in Google Analytics Presented By Table of Contents Overview 3 How to Use This Knowledge Brief 3 Metric to Measure: Traffic 4 Direct (Acquisition > All Traffic

More information

1 open source' I community experience distilled. Piwik Web Analytics Essentials. Stephan A. Miller

1 open source' I community experience distilled. Piwik Web Analytics Essentials. Stephan A. Miller Piwik Web Analytics Essentials A complete guide to tracking visitors on your websites, e-commerce shopping carts, and apps using Piwik Web Analytics Stephan A. Miller [ PUBLISHING 1 open source' I community

More information