+ All Categories
Home > Marketing > Ecommerce Tracking With Google Analytic

Ecommerce Tracking With Google Analytic

Date post: 21-Nov-2014
Category:
Upload: amol-pomane
View: 144 times
Download: 3 times
Share this document with a friend
Description:
know how to do ecommerce tracking for google analytic. Ecommerce tracking code example in google analytic.
Popular Tags:
14
Google Analytic Understanding eCommerce Tracking
Transcript
Page 1: Ecommerce Tracking With Google Analytic

Google Analytic

Understanding eCommerce Tracking

Page 2: Ecommerce Tracking With Google Analytic

Some Basics

Page 3: Ecommerce Tracking With Google Analytic

How It Works

Page 4: Ecommerce Tracking With Google Analytic

How To Setup1.Click Admin from the menu bar at the top of any screen in Analytics.2.Use the drop down menus to select the Account, Property, and View.3.Click View Settings.4.In the Ecommerce Settings section, click the toggle so it says ON5.Click Save at the bottom of the page.

Page 5: Ecommerce Tracking With Google Analytic
Page 6: Ecommerce Tracking With Google Analytic

eCommerce Code

Page 7: Ecommerce Tracking With Google Analytic

_addItem()

_addItem(transactionId, sku, name, category, price, quantity)

_gaq.push(['_addItem', '1234', // transaction ID - necessary to associate item with transaction 'DD44', // SKU/code - required 'T-Shirt', // product name - necessary to associate revenue with product 'Olive Medium', // category or variation '11.99', // unit price - required '1' // quantity - required ]);

Page 8: Ecommerce Tracking With Google Analytic

_addTrans()

_addTrans(transactionId, affiliation, total, tax, shipping, city, state, country)

_gaq.push(['_addTrans', '1234', // transaction ID - required 'Womens Apparel', // affiliation or store name '28.28', // total - required; Shown as "Revenue" in the // Transactions report. Does not include Tax and Shipping. '1.29', // tax '15.00', // shipping 'San Jose', // city 'California', // state or province 'USA' // country ]);

Page 9: Ecommerce Tracking With Google Analytic

_gaq.push(['_setAccount', 'UA-XXXXX-X']);_gaq.push(['_trackPageview']);_gaq.push(['_addTrans', '1234', // transaction ID - required 'Womens Apparel', // affiliation or store name '28.28', // total - required '1.29', // tax '15.00', // shipping 'San Jose', // city 'California', // state or province 'USA' // country]);_gaq.push(['_addItem', '1234', // transaction ID - necessary to associate item with transaction 'DD44', // SKU/code - required 'T-Shirt', // product name 'Olive Medium', // category or variation '11.99', // unit price - required '1' // quantity - required]);_gaq.push(['_trackTrans']);

Page 10: Ecommerce Tracking With Google Analytic

Overview Of Account

Page 11: Ecommerce Tracking With Google Analytic

Product Performance

Page 12: Ecommerce Tracking With Google Analytic

Transactions

Page 13: Ecommerce Tracking With Google Analytic

Time To Purchase

Page 14: Ecommerce Tracking With Google Analytic

Get In Touch

@amolpomane


Recommended