Setting Up Google Analytics Enhanced Ecommerce Using Google Tag Manager: A Step by Step Guide

Size: px
Start display at page:

Download "Setting Up Google Analytics Enhanced Ecommerce Using Google Tag Manager: A Step by Step Guide"

Transcription

1 Setting Up Google Analytics Enhanced Ecommerce Using Google Tag Manager: A Step by Step Guide For More Information, please visit: MoreVisibility Fx:

2 Introduction As a Google Analytics Certified Partner and Google Tag Manager Specialist, MoreVisibility is deeply involved in the field of Analytics. From getting started with your web analytics software to training your staff to use your analytics tools more effectively, MoreVisibility can help. This guide covers a step-by-step outline to help you deploy Google Analytics Enhanced Ecommerce via Google Tag Manager. I. About Enhanced Ecommerce Ecommerce functionality in Google Analytics (GA) is nothing new. For years site owners have been able to accurately measure how shoppers convert, which products are most popular, and how much revenue is attributed to shipping and tax. What hasn t been as easy is understanding user behavior from promotional impression to purchase. Questions like these 1. How did the visitor first find this product on my site? 2. Which promotions did this customer see on my site? 3. How many other items did they add or remove from the cart before checkout? 4. Was a coupon used? 5. Which product suggestions were effective? 6. What happens if a client returns the item for a refund? were always difficult to answer without leveraging other GA features like custom variables and custom dimensions and event tracking. While it wasn t impossible; it required sophisticated deployments of the Google Analytics Tracking Code (GATC) and considerable developer resources. The result was a disconnected set of reports that mandated that the Analyst had a complete understanding of custom reporting and the advanced segmentation built into GA. Enhanced Ecommerce (EE) introduces a new collection of reports that build on the transactional capabilities of Classic GA to add insight into the entire shopping journey. What s New? Besides a great set of reports, the big change with Enhanced Ecommerce in GA is the data model. Previously, Ecommerce hits consisted of transactional data that was pushed into GA from the receipt page of your site and contained information related to 1

3 the overall transaction along with an array that represented the products purchased in the transaction. This was pushed to GA in a hit when the track trans and add item methods were called. Enhanced Ecommerce data is now integrated into the overall GA data model and opportunities abound to uncover how visitors interact with your site s merchandising. Now rather than calling Ecommerce Transaction coding on the receipt page; Ecom calls are made from multiple pages. Let s look at a typical path through an Ecommerce site as an example: Click on a home page promotional offer See product listings in an internal search result page Click a product listing View the product detail page Add to cart Checkout Steps Finalize Transaction In each of these steps (and more), the EE Production Collection model lets you add data to get keen insight into the performance of your merchandising and checkout funnel flow. Let s explore how to use Google Tag Manager to deploy the new Enhanced Ecommerce code to properly capture steps in the path above. II. About Google Tag Manager Google Tag Manager (GTM) is a Tag Management System (TMS) that simplifies the deployment of measurement pixels for Marketers. The GTM data layer is critical to a successful deployment for Google Tag Manger. The data layer exists to hold information that is available on page and pass it to the macros and tags in GTM. Since the data layer is simple JavaScript Object Notation (JSON), it is easy to deploy and update. Page level data that you may want to pass to the data layer could use JavaScript Constants, DOM Elements and Attributes or any other information about the page and page interactions that you would like to capture. An example of the syntax would be: 2

4 <script> datalayer = [{ ]; 'pagecategory': 'signup', 'visitortype': 'high-value' </script> The easiest way to enhance your collection capabilities is by programmatically passing information into the datalayer for consumption by the tags or as a cue to fire measurement pixels. In order for Google Analytics Ecommerce code to function properly via GTM; the variables in this document denoted as (Required) must be declared and populated in the data layer. On page load you can deploy the datalayer directly in the code. If data is not available on page load then you can deploy using the datalayer.push method to update the datalayer. Information available on page load: <script> datalayer =[{ 'visitorid': ' ']; </script> Added to the datalayer after page load: 'visitorid': ' '); Some things to keep in mind regarding the data layer: 1. The data layer name is case sensitive and should always be represented in code as datalayer as in datalayer.push method. 2. Variables are page level only and, as a best practice, should always be enclosed in single quotes and should always be consistent throughout all pages of the site. This document assumes that you have familiarity with GTM and the datalayer that is critical for a successful deployment. For more information of GTM, please visit the official Google help center for GTM. 3

5 III. Product Promotions Promotion Impressions Enhanced Ecommerce (EE) has a great collection of methods to pass more data into Google Analytics (GA). (For a complete list please see the resource section below.) To track the effectiveness of promotions, you will need to pass related impression and click data into the datalayer. This will allow GTM to pass data to GA to see how many users are exposed to the creative and also to calculate a click through rate for the various offers on a site. <script> // An example of measuring promotion views. This example assumes that // information about the promotions displayed is available when the page loads. 'promoview': { 'promotions': [ // Array of promofieldobjects. { 'id': '22222', // ID or Name is required. 'name': 'Free Shipping', 'creative': 'v1-sparkle', 'position': 'Promo Box 1', { 'id': '44444', // Use any internal code. Name or ID is required. 'name': '10% off 100', 'creative': 'shimmery3', 'position': 'Promo Box 2' ] ); </script> The name values pairs above represent only the JSON required for Enhanced Ecommerce. If you are currently pushing any other information to the datalayer, you would also need to account for that on each page with the exception of the Ecommerce receipt page. (The Enhanced Ecommerce datalayer can replace the existing JSON pairs as they relate to the datalayer as long as you are not using any of those values for another tag or if you have no other dependencies on that data.) 4

6 Promotion Clicks Now that we ve notified GTM & GA that a user was exposed to a promotion, we need to listen for clicks. How you deploy this depends on the architecture of your site and systems, and can be handled through a custom event listener and a helper function as illustrated below: <script> /** * Call this function when a user clicks on a promotion. This function uses the eventcallback datalayer variable to handle navigation after the ecommerce data is sent to Google Analytics. * {Object promoobj An object representing an internal site promotion. */ function onpromoclick(promoobj) { 'event': 'promotionclick', 'promoclick': { 'promotions': [ { 'id': '44444', 'name': '10% off 100', 'creative': 'shimmery3', 'position': 'Promo Box 2' ], 'eventcallback': function() { document.location = promoobj.destinationurl; ); </script> // Use any internal code. Name or ID is required. In the code above the helper function PromoClick is called by the event listener and builds the promo information exactly as in the impression example to pass into GA. The eventcallback function simply waits for all the tags to fire before allowing the browser to move on to the desired page. 5

7 IV. Product Listings and Impressions There are many opportunities for a user to see a product on your site. These could include (among others) promotional landing pages, site search results, category pages and the product page itself. EE has a method for measuring all of these by recording a product impression and modifying what kind of impression it was. For example a search results page for blue widgets: <script> 'impressions': [ { 'name': 'Basic Widget', 'id': '123456', 'price': '19.95', 'category': 'Industrial', 'variant': 'blue' 'list': 'Search Results', 'position': 1, {, { // Name or ID is required. 'name': 'Deluxe Widget', // Name or ID is required. 'id': '222222', 'price': '29.95', 'category': 'Home', 'variant': 'blue' 'list': 'Search Results', 'position': 2 'name': 'Premium Widgets', 'variant': 'blue' 'list': 'Search Results', 'position': 3 // Name or ID is required. ] ); </script> 6

8 In the example above we ve only built the array for the first three products but all displayed or visible products should be included in the array. You would track other product impressions in the same manner by using the list attribute to denote where the product appeared (when appropriate). For example: 'list': 'Related Products' or 'list': 'Search Results' etc. The impression can be tied to a product detail view (see section VI) to track related products or you may also like or similar recommendations. V. Product Clicks Now that GTM & GA has registered a product impression, the next interaction to measure is the click on the link or image to the product detail page. As mentioned above, your site architecture will dictate how you push this data into the datalayer. <script> function(productobj) { 'event': 'productclick', 'click': { 'actionfield': {'list': 'search results', 'products': [{ 'name': 'Premium Widgets', 'variant': 'blue' ] // Name or ID is required. // Optional list property., 'eventcallback': function() { document.location = document.location = '/product/widgets/acme/id= '; ); </script> As in previous examples, the callback function is used to slightly delay the navigation until the data has been pushed to GTM & GA. We recommend pushing this data using an event listener. 7

9 VI. Product Detail Views Once a product detail page is loaded, we want to categorize this for GTM and alert GA that this has taken place and pass any relevant list information into the interface. In the example below we are registering the detail view and also the impression from a hypothetical promotion. <script> // Measure a view of product details. This example assumes the detail view occurs on //pageload. 'detail': { 'products': [{ ; 'name': 'Premium Widgets', 'variant': 'blue' // Name or ID is required. 'actionfield': {'list': 'You May Also Like', //optional list property. 'products': [{ 'name': 'Widget Bag', // Name or ID is required. 'id': ' ', 'price': '19.95', 'brand': 'Dundler Mifflin', 'category': 'Storge', 'variant': 'small' ] ; 'promoview': { 'promotions': [ { 'id': '44444', ); </script> 'name': '10% off 100', 'creative': 'static', 'position': 'right rail box 2'] // Array of promofieldobjects. // Use any internal code. Name or ID is required. 8

10 VII. Cart Interaction Enhanced Ecommerce now natively tracks cart additions and removals so that true product level conversions can be measured. Add to Cart: // Measure adding a product to a shopping cart by using an 'add' actionfieldobject // and a list of productfieldobjects. 'event': 'addtocart', ); 'currencycode': 'USD', //optional 'add': { // 'add' actionfieldobject measures. 'products': [{ // adding a product to a shopping cart. 'name': 'Premium Widgets', // Name or ID is required. 'variant': 'blue', 'quantity': 1 ] Remove from Cart: 'event': 'removefromcart', 'remove': { 'products': [{ 'name': 'Premium Widgets', 'variant': 'blue', 'quantity': 1 ] ); // Name or ID is required. 9

11 VIII. Checkout & Step Definition For each step in the checkout process the following code variation could be used so that GA can represent whether items are added or removed as the user progresses through the checkout process. Along the way, the step field is used to define the numbered step in the process (1,2,3, etc.) and the option field is used to pass data related to each step, like shipping option and payment type. Initiating Checkout 'event': 'checkout', 'checkout': { 'actionfield': {'step': 1, 'products': [{ 'name': 'Premium Widgets', // Name or ID is required. 'variant': 'blue', 'quantity': '1', ] 'eventcallback': function() { document.location = '/checkout.php'; The values would be sent to the datalayer via an event listener that fires when a visitor clicks on the checkout button. Checkout Continued, Each Step Should be Defined: 'event': 'checkout', 'checkout': { 'actionfield': {'step': 4, 'option': 'shipping-standard', 'products': [{ 'name': 'Premium Widgets', // Name or ID is required. 'variant': 'blue', 'quantity': '1' ] 10

12 The values would be set or sent to the datalayer on page load. Each step in the process is defined and named in the GA admin user interface so that a funnel can be built specific to Ecommerce. In the example above an option is also passed to provide more insight about what is selected in each step. IX. Measuring a Transaction On load of the receipt page, the following is a sample of how the datalayer should be populated: 'purchase': { 'actionfield': { 'id': 'T12345', // Transaction ID required. 'affiliation': 'Online Store', 'revenue': '49.95', // Total transaction value (incl. tax and shipping) 'tax':'4.00', 'shipping': '6.00', 'coupon': '14SUMMER', 'products': [{ 'name': 'Premium Widgets', // Name or ID is required. 'variant': 'blue', 'quantity': 1, 'coupon': '14Summer' ] Notice that you can pass coupons and pricing item by item but only one string per transaction. 11

13 X. Importing Product Data For all of the product data that we mentioned in the previous examples you can limit the data in your product array to only the id. The rest can be joined later by leveraging product data upload via the admin section of GA. This limits the amount of data that needs to be passed (there is a limit of 8192 bytes per hit) although it does require you to upload any deltas as required. XI. Final Thoughts For Enhanced Ecommerce, remember to configure the datalayer to dynamically pass in the values you need for each of your page types: Promotional Landing Pages Category Pages Search Results Pages Product Detail Pages Checkout Flow Transaction Receipt In addition, to improve your merchandising, remember to properly pass in your related products and other list attributes into the GTM datalayer. While not discussed in this document, EE also allows you to push data into GA related to partial and full refunds. Recommended Resources for Further Reading: Much of the coding in this document was modified from the official Google Analytics Enhanced Ecommerce support page. The link is here for your convenience and further reading:

14 About MoreVisibility As a Google Analytics Certified Partner, MoreVisibility offers a wide range of Google Analytics consultation and guidance. Want to learn more? us at Analytics@MoreVisibility.com or call. For more about MoreVisibility, check out: For the latest Analytics information, subscribe to our Analytics Blog: 13

Enhancing the Consumer Shopping Experience with Google Analytics. Presented by:

Enhancing the Consumer Shopping Experience with Google Analytics. Presented by: Enhancing the Consumer Shopping Experience with Google Analytics Presented by: & Who are we? Andy Gibson, MBA Analyst Marcia Jung Product Manager, Google Analytics Agenda E-Commerce Trends and What s New

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

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

WEBINAR Implementation and Advanced Google Tag Manager

WEBINAR Implementation and Advanced Google Tag Manager WEBINAR Implementation and Advanced Google Tag Manager May 21, 2014 About InfoTrust GACP and GAP Reseller working with 2,000+ sites globally. Google Tag Manager Specialists In-depth understanding of tagging

More information

SmithCart Google Analytics

SmithCart Google Analytics SmithCart Google Analytics Users Manual Revision Date: 9/7/2013 1 Table of Contents I. Introduction... 3 II. What is Google Analytics?... 3 III. Configuring your Google Account to Use Analytics... 3 A.

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

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

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

Document Services Online Customer Guide

Document Services Online Customer Guide Document Services Online Customer Guide Logging in... 3 Registering an Account... 3 Navigating DSO... 4 Basic Orders... 5 Getting Started... 5 Attaching Files & Print Options... 7 Advanced Print Options

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

Ignify. ecommerce. System Overview. Ignify ecommerce integrates with:

Ignify. ecommerce. System Overview. Ignify ecommerce integrates with: Ignify Ignify header here ecommerce Ignify ecommerce integrates with: Dynamics AX Dynamics CRM Dynamics GP Dynamics NAV Dynamics SL Optimized for: Responsive Web Design Social Media Search Engines Ignify

More information

Dynamic Product Ads Implementation Guide

Dynamic Product Ads Implementation Guide Dynamic Product Ads Implementation Guide Reach your customers with highly relevant products, on all devices Table of Contents Introduction to dynamic product ads... Dynamic product requirements... Creating

More information

Ecommerce and PayPal Shopping Cart

Ecommerce and PayPal Shopping Cart 1 of 5 Ecommerce and PayPal Shopping Cart NOTE: If you do not see the "SETTINGS" tab at the top of your editor and you need to make a change or add shopping cart functionality, please send a request to

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

9 Ecommerce Reports to Leverage This Holiday Season

9 Ecommerce Reports to Leverage This Holiday Season 9 Ecommerce Reports to Leverage This Holiday Season 9 Ecommerce Reports to Leverage This Holiday Season According to Goldman Sachs research, digital commerce adoption and expansion is anticipated to further

More information

Integration Guide. Integrating Extole with Adobe Target. Overview. Before You Begin. Advantages of A/B Testing

Integration Guide. Integrating Extole with Adobe Target. Overview. Before You Begin. Advantages of A/B Testing Integrating Extole with Adobe Target Overview Extole partners with Adobe Target so that marketers can easily deploy Extole tags and test your referral program to improve its performance. A/B testing will

More information

Getting A Google Account

Getting A Google Account Getting A Google Account To get started with Google Analytics, you ll first need a Google account. If you already have a Gmail account, you'll be able to use that. If not, create your Google account. 1.

More information

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO Discussion of Features Eric Marsh July 2015 1 AN INNOVATIVE ecommerce SOLUTION The LYONSCG ecommerce Accelerator (LEA) for Magento was developed for small

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

Kentico CMS 7.0 E-commerce Guide

Kentico CMS 7.0 E-commerce Guide Kentico CMS 7.0 E-commerce Guide 2 Kentico CMS 7.0 E-commerce Guide Table of Contents Introduction 8... 8 About this guide... 8 E-commerce features Getting started 11... 11 Overview... 11 Installing the

More information

Google Tag Manager integration guide (incl. datalayer support) for Psychic Bazaar (www.psychicbazaar.com) Specification document

Google Tag Manager integration guide (incl. datalayer support) for Psychic Bazaar (www.psychicbazaar.com) Specification document Google Tag Manager integration guide (incl. datalayer support) for Psychic Bazaar (www.psychicbazaar.com) Specification document 2 Table of Contents 1 Introduction... 4 2 Identifying and tracking the static

More information

Read the Docs Template Documentation

Read the Docs Template Documentation Read the Docs Template Documentation Release latest Read the Docs December 14, 2015 Contents 1 Magento Affiliate extension 1 1.1 Multi-campaigns............................................. 1 1.2 Referral

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

Jackson Systems E-commerce Guide

Jackson Systems E-commerce Guide Accessing E-commerce To access the e-commerce feature, go to jacksonsystems.com and click on Contractor Login in the upper right hand corner. If you do not have a username and password, you can request

More information

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Best Purchased Products Report Administration Panel with ability to share as much

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

Magento Feature List. ecommerce Platform for Growth

Magento Feature List. ecommerce Platform for Growth Magento Feature List ecommerce Platform for Growth Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience,

More information

Google Analytics Enhanced E-Commerce. 8 Steps for Successfully Managing an Implementation Project

Google Analytics Enhanced E-Commerce. 8 Steps for Successfully Managing an Implementation Project Google Analytics Enhanced E-Commerce 8 Steps for Successfully Managing an Implementation Project Enhanced E-Commerce Implementation How long will implementation take? What level of effort is required from

More information

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037 Developer Reference A mobile loyalty platform for retailers Document Number: 09720037 CONTENTS Guide Overview Description of this Guide... ix What s new in this guide...x Upgrade impact...xii 1. Getting

More information

How To Market Your Website Online

How To Market Your Website Online Internet marketing Corporate Training Program- Delhi School of Internet Marketing Under the training program all the trainees will not only be trained in internet marketing but they will be working on

More information

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Contents Introduction... 3 What is Microsoft Advertising adcenter Campaign Analytics?... 3 Useful terms... 3 Overview... 4 Get Started...

More information

AZOX PRODUCT OVERVIEW. Azox. Integrated E-Commerce

AZOX PRODUCT OVERVIEW. Azox. Integrated E-Commerce AZOX PRODUCT OVERVIEW Azox Integrated E-Commerce esource: E Commerce Solutions What Does Azox Do? Azox develops and distributes a broad range of e commerce solutions helping to meet the needs of our many

More information

Follow Up Email. Magento Extension User Guide. Official extension page: Follow Up Email. User Guide: Follow Up Email

Follow Up Email. Magento Extension User Guide. Official extension page: Follow Up Email. User Guide: Follow Up Email Follow Up Email Magento Extension User Guide Official extension page: Follow Up Email Page 1 Table of contents: 1. Follow Up Email configuration....3 2. Rule creation...6 3. Follow up email templates.....17

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

Magento Enterprise Edition Datasheet

Magento Enterprise Edition Datasheet Magento Enterprise Edition Datasheet Increase Control Increase ROI Increase Flexibility Increase Growth Platform for Growth Magento provides the optimal platform for business growth Scalability Magento

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

White Paper Using Webinars for Online Marketing

White Paper Using Webinars for Online Marketing White Paper Using Webinars for Online Marketing Using Webinars for Online Marketing Introduction Webinars are an effective part of a marketing and lead generation strategy. Prospects are invited to a scheduled

More information

LOCAL SEARCH EDITING INSTRUCTIONS

LOCAL SEARCH EDITING INSTRUCTIONS LOCAL SEARCH EDITING INSTRUCTIONS updated 7.30.15 You must login and edit your information on the Chemdry.com Profile Editor to personalize your directory listing and/or landing page. There are 2 main

More information

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By Google Analytics Guide for BUSINESS OWNERS By David Weichel & Chris Pezzoli Presented By Google Analytics Guide for Ecommerce Business Owners Contents Introduction... 3 Overview of Google Analytics...

More information

Tapping the power of Google Analytics

Tapping the power of Google Analytics Tapping the power of Google Analytics Nathan Huppatz (@huppy) ic1.mobi or #pesa12 Who am I? 13 years in ecommerce ebay Top Rated Seller (250,000+ transactions) Multichannel Retailer (ebay, Web, Comparison,

More information

Google Analytics Integration

Google Analytics Integration Google Analytics Integration There are 2 ways to implement Google Analytics snippet: synchronous and asynchronous. Currently, we only support the asynchronous snippets. nanorep e: Google allows Analytics

More information

Moneris ecommerce Guide

Moneris ecommerce Guide Moneris ecommerce Guide (04/16) For more information and assistance: Web: getpayd.com/paydproplus/support Toll-free: 1-855-423-PAYD (7293) Record your Moneris merchant ID here: Contents Welcome to PAYD

More information

Amazon Marketing Services User Guide

Amazon Marketing Services User Guide Amazon Pages are customized landing pages for presenting your brand s products at Amazon.com customized by you, using simple yet professional templates. Amazon Posts lets you publish content to your Amazon

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

Adaptive Business Management Systems Privacy Policy

Adaptive Business Management Systems Privacy Policy Adaptive Business Management Systems Privacy Policy Updated policy: Effective on July 01, 2013 This privacy statement describes how Adaptive Business Management Systems collects and uses the personal information

More information

CDK Digital Marketing Websites

CDK Digital Marketing Websites CDK Digital Marketing Websites VW Digital Base Digital Core Audience Management (AMP) $950/mo* $1,650/mo* $2,889/mo* Multi-Device Website Platform Drag and Drop Content Management System Expansive Widget

More information

A Beginner's Guide to E-Commerce Personalization

A Beginner's Guide to E-Commerce Personalization A Beginner's Guide to E-Commerce Personalization CommerceSciences.com Contents Introduction... 1 Real-Time Offers & Website Personalization... 3 Creative Messaging That Really Matters... 5 Drawing Your

More information

Conversion Rate Optimisation Guide

Conversion Rate Optimisation Guide Conversion Rate Optimisation Guide Improve the lead generation performance of your website - Conversion Rate Optimisation in a B2B environment Why read this guide? Work out how much revenue CRO could increase

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

LACKING TRACKING? STOP SLACKING. GOOGLE TAG MANAGER

LACKING TRACKING? STOP SLACKING. GOOGLE TAG MANAGER LACKING TRACKING? STOP SLACKING. GOOGLE TAG MANAGER November 9, 2015 edui HI! I M PAUL KOCH I work as a Senior Digital Analyst at Viget. @paulmkoch Viget Labs, LLC This presentation is CONFIDENTIAL and

More information

Pay with Amazon Integration Guide

Pay with Amazon Integration Guide 2 2 Contents... 4 Introduction to Pay with Amazon... 5 Before you start - Important Information... 5 Important Advanced Payment APIs prerequisites... 5 How does Pay with Amazon work?...6 Key concepts in

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

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

Facebook Holiday Best Practices Guide

Facebook Holiday Best Practices Guide Facebook Holiday Best Practices Guide 1 facebook_holiday-guide.indd 1 8/5/2015 11:14:41 PM Contents Introduction 3 Your holiday prep checklist 4 Drive momentum before the holidays 8 Maximize sales during

More information

Description of Services for ecommerce Website Package

Description of Services for ecommerce Website Package Description of Services for ecommerce Website Package We provide this document to define services covered in our ecommerce website package. It is very important you understand exactly what you are purchasing.

More information

VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1. Content Marketing - Analyzing Your Efforts:

VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1. Content Marketing - Analyzing Your Efforts: VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1 Content Marketing - Analyzing Your Efforts: This is a transcript of a presentation originally given live at the Growth Powered by Risdall Fall

More information

FACT SHEET. EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity.

FACT SHEET. EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity. FACT SHEET EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity. MAKE ORDERING EASIER AND SIMPLIFY THE OVERALL PROCESS THROUGH A SELF-SERVICE ONLINE TOOL

More information

Open Source e-commerce

Open Source e-commerce Open Source e-commerce Optimize sales with an awesome online store. Online Demo OpenERP e-commerce is unlike anything you have ever seen before. Get an awesome catalog of products and great product description

More information

Business white paper. The road to strategic website design The Optimost Web Optimization Maturity Model

Business white paper. The road to strategic website design The Optimost Web Optimization Maturity Model Business white paper The road to strategic website design The Optimost Web Optimization Maturity Model Digital marketers spend large sums attracting website traffic. Much of that investment is wasted.

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

Shopping Cart Software

Shopping Cart Software Shopping Cart Software QuickStart Guide 1 Please note: The Quick Start guide covers only the minimum requirements to get your cart up and running; there are many more features for you to take advantage

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

Transforming Big Data Into Smart Advertising Insights. Lessons Learned from Performance Marketing about Tracking Digital Spend

Transforming Big Data Into Smart Advertising Insights. Lessons Learned from Performance Marketing about Tracking Digital Spend Transforming Big Data Into Smart Advertising Insights Lessons Learned from Performance Marketing about Tracking Digital Spend Transforming Big Data Into Smart Advertising Insights Lessons Learned from

More information

CAPTURING UNTAPPED REVENUE: How Customer Experience Insights Improve Remarketing and Customer Recovery Efforts

CAPTURING UNTAPPED REVENUE: How Customer Experience Insights Improve Remarketing and Customer Recovery Efforts CAPTURING UNTAPPED REVENUE: How Customer Experience Insights Improve Remarketing and Customer Recovery Efforts Hilary Salazar, Product Marketing Manager, Tealeaf TABLE OF CONTENTS Executive Summary...1

More information

web analytics ...and beyond Not just for beginners, We are interested in your thoughts:

web analytics ...and beyond Not just for beginners, We are interested in your thoughts: web analytics 201 Not just for beginners, This primer is designed to help clarify some of the major challenges faced by marketers today, such as:...and beyond -defining KPIs in a complex environment -organizing

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

Adobe Experience Manager: Commerce

Adobe Experience Manager: Commerce Adobe Experience Manager: Commerce Datasheet Adobe Experience Manager: Commerce Benefits of e-commerce capabilities Agile merchandising and marketing Rapid and flexible customization of the shopping experience

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

Adobe Digital Publishing Suite, Analytics Service

Adobe Digital Publishing Suite, Analytics Service Adobe Digital Publishing Suite, Analytics Service Analyze and optimize content for greater business impact Table of contents 1: Business benefits 2: Key features 2: Standard baseline analytics reporting

More information

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo Presented By: Web Analytics 101 Avoid Common Mistakes and Learn Best Practices June 2012 Lubabah Bakht, CEO, Vitizo Web Analytics 101, Lubabah Bakht, June 2012 This 12-page whitepaper provides a deep understanding

More information

WEB ANALYTICS 101. March 20, 2015

WEB ANALYTICS 101. March 20, 2015 WEB ANALYTICS 101 March 20, 2015 AGENDA 1. Define web analytics 2. Explore how analytics tools work 3. Review best practices 4. Get to know your visitors 5. Identify traffic sources 6. Understand site

More information

Tracking Campaigns for Local Authorities. Lucian Glenny Web Analyst

Tracking Campaigns for Local Authorities. Lucian Glenny Web Analyst Tracking Campaigns for Local Authorities Lucian Glenny Web Analyst Overview 1. Creating a measurement plan 2. Identifying users from your campaign in Google Analytics 3. Analysing the pages viewed by campaign

More information

Google Analytics tags migration to Google Tag Manager in a multi-site environment Monday, 28 September 2015 07:55

Google Analytics tags migration to Google Tag Manager in a multi-site environment Monday, 28 September 2015 07:55 Introduction More than one year ago my colleague Stephane wrote an article about Google Tag Manager implementation basics. As a reminder this tool is a tag management system launched in 2012 by Google.

More information

Setup Guide. 1.877.273.9921 www.epikone.com

Setup Guide. 1.877.273.9921 www.epikone.com Setup Guide by Step 1: Create A Google Analytics Account Step 2: Analyze Your Website Step 3: Create A Profile Step 4: Link Google Analytics Account To Your Google AdWords Account Step 5: Add Tracking

More information

Retargeting with Google AdWords

Retargeting with Google AdWords CASES IN MANAGEMENT 247 Introduction Retargeting with Google AdWords You can t just place a few Buy buttons on your website and expect your visitors to buy. Neil Patel, Co-founder of Crazy Egg, Hello Bar

More information

Setting Up Your Online ecommerce Shopping Cart

Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Contents o Building Your ecommerce Shopping Cart o Creating Products o Configuring Shipping & Verifying Taxes

More information

Western Kentucky University s Promotional Product Web Store. User Guide

Western Kentucky University s Promotional Product Web Store. User Guide Western Kentucky University s Promotional Product Web Store User Guide e0001df 07/01/2010 Guy Brown Promotional s Web Store User Guide This user guide was created to help make your web store experience

More information

AWEBDESK LIVE CHAT SOFTWARE

AWEBDESK LIVE CHAT SOFTWARE AWEBDESK LIVE CHAT SOFTWARE Version 6.1.0 AwebDesk Softwares Administrator Guide Edition 1.0 November 2012 Page 1 TABLE OF CONTENTS Introduction.......... 3 Sign In as Admin...4 Admin Dashboard Overview.

More information

Magento 1.3 Feature List

Magento 1.3 Feature List ecommerce Platform for Growth Magento 1.3 Feature List Site Management Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed

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

Ten things to consider with shopping carts

Ten things to consider with shopping carts E-book Ten things to consider with shopping carts Being able to add your own shopping cart to a website is fantastic and technology has made the process extremely simple. But beyond the technology, how

More information

Website Custom Audiences Guide

Website Custom Audiences Guide Website Custom Audiences Guide bn.1 Table of Contents 1. Overview Website Custom Audiences vs. FBX 2. Running a WCA Campaign Who Should Use WCA? Finding the Right Audience Basic WCA Targeting Leveraging

More information

Consultation With E-Commerce Expert success planning - process starts with an interview to determine what is the ideal e-commerce solution:

Consultation With E-Commerce Expert success planning - process starts with an interview to determine what is the ideal e-commerce solution: Consultation With E-Commerce Expert success planning - process starts with an interview to determine what is the ideal e-commerce solution: Goals of the site Expectations traffic, sell, fulfill, functionalities

More information

WebSphere Commerce Overview for Vector. 2014 IBM Corporation

WebSphere Commerce Overview for Vector. 2014 IBM Corporation WebSphere Commerce Overview for Vector Agenda WebSphere Commerce Overview Starter Stores Extended Sites Mobile Commerce Tooling Precision Marketing Promotions Search Solr Summary Capabilities References

More information

Revenue Generating Conversion Rate Optimization (CRO) Strategies

Revenue Generating Conversion Rate Optimization (CRO) Strategies Revenue Generating Conversion Rate Optimization (CRO) Strategies AWG s recommendations are based upon intuitive testing and tracking via Google Analytics and other programs specifically purposed to measure

More information

Bitcoin Payment Gateway API

Bitcoin Payment Gateway API Bitcoin Payment Gateway API v0.3 BitPay, Inc. https://bitpay.com 2011-2012 BITPAY, Inc. All Rights Reserved. 1 Table of Contents Introduction Activating API Access Invoice States Creating an Invoice Required

More information

Online Donor Acquisition and Retention Course

Online Donor Acquisition and Retention Course Online Donor Acquisition and Retention Course Beginner Donor Acquisition Module 1a-c Introduction to Donor Acquisition What happens when someone shows up at your website? Key Performance Indicators: What

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

Structured Content: the Key to Agile. Web Experience Management. Introduction

Structured Content: the Key to Agile. Web Experience Management. Introduction Structured Content: the Key to Agile CONTENTS Introduction....................... 1 Structured Content Defined...2 Structured Content is Intelligent...2 Structured Content and Customer Experience...3 Structured

More information

Higher Education in Further Education Webinar

Higher Education in Further Education Webinar Higher Education in Further Education Webinar Contents 1. Introduction 2. Make an HE Recruitment Calendar 3. Advertise across multiple platforms 4. Understand your digital audience 5. Engage students with

More information

Smart Marketing Catalyst. E-Commerce. Cart Tracking Configuration Guide 5/20/2016. Canada France Russia. dialoginsight.com

Smart Marketing Catalyst. E-Commerce. Cart Tracking Configuration Guide 5/20/2016. Canada France Russia. dialoginsight.com Smart Marketing Catalyst 5/20/2016 Canada France Russia dialoginsight.com 1 Table of Contents Introduction... 2 Terminology... 2 Activation... 3 Shopping Cart Tracking... 5 Important Points to Consider...

More information

Evaluating the impact of research online with Google Analytics

Evaluating the impact of research online with Google Analytics Public Engagement with Research Online Evaluating the impact of research online with Google Analytics The web provides extensive opportunities for raising awareness and discussion of research findings

More information

Includes: Personalized analysis and advice for making http://210consulting.com more mobile-friendly

Includes: Personalized analysis and advice for making http://210consulting.com more mobile-friendly Personalized analysis and advice for making more mobile-friendly Includes: How mobile consumers see your current site Site Loading Speed Check Tips for online-only businesses Personalized advice for your

More information

Schneps, Leila; Colmez, Coralie. Math on Trial : How Numbers Get Used and Abused in the Courtroom. New York, NY, USA: Basic Books, 2013. p i.

Schneps, Leila; Colmez, Coralie. Math on Trial : How Numbers Get Used and Abused in the Courtroom. New York, NY, USA: Basic Books, 2013. p i. New York, NY, USA: Basic Books, 2013. p i. http://site.ebrary.com/lib/mcgill/doc?id=10665296&ppg=2 New York, NY, USA: Basic Books, 2013. p ii. http://site.ebrary.com/lib/mcgill/doc?id=10665296&ppg=3 New

More information

4 ecommerce challenges solved using analytics

4 ecommerce challenges solved using analytics 4 ecommerce challenges solved using analytics 4 ecommerce challenges solved using analytics Contents ONE Customer Journey Attribution TWO Valuable Customer Marketing THREE User Flow Analysis (Registration

More information

How to Create a Simple WordPress Store Online for Free

How to Create a Simple WordPress Store Online for Free How to Create a Simple WordPress Store Online for Free The Internet is one of the most fertile grounds on which you can build a business to sell your products or services. This is because of the fact that

More information

User Guide and Tutorial Central Stores Online Ordering System. Central Stores Financial Services Western Washington University

User Guide and Tutorial Central Stores Online Ordering System. Central Stores Financial Services Western Washington University User Guide and Tutorial Central Stores Online Ordering System Central Stores Financial Services Western Washington University TABLE OF CONTENTS 1. Introduction... Page 3 2. Finding and Logging into Central

More information

DISPLAY ADVERTISING: WHAT YOU RE MISSING. Written by: Darryl Chenoweth, Digital Marketing Expert

DISPLAY ADVERTISING: WHAT YOU RE MISSING. Written by: Darryl Chenoweth, Digital Marketing Expert Display Advertising: What You re // 1 2 4.ch DISPLAY ADVERTISING: WHAT YOU RE MISSING Written by: Darryl Chenoweth, Digital Marketing Expert Display Advertising: What You re // 2 Table of Contents Introduction...

More information