Last active
July 5, 2023 18:39
-
-
Save OrenBochman/96180a5394e1c6792cab to your computer and use it in GitHub Desktop.
Enhanced ecommerce snippets in universal analytics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This command must occur after you create your tracker object and before you use any of the enhanced ecommerce specific functionality. | |
ga('require', 'ec'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ga('ec:addImpression', { // Provide product details in an impressionFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel/T-Shirts', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'Black', // Product variant (string). | |
'list': 'Search Results', // Product list (string). | |
'position': 1, // Product position (number). | |
'dimension1': 'Member' // Custom dimension (string). | |
}); | |
ga('send', 'pageview'); // Send the impression with initial pageview. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The impression from a Related Products section. | |
ga('ec:addImpression', { // Provide product details in an impressionFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel/T-Shirts', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'Black', // Product variant (string). | |
'list': 'Related Products', // Product list (string). | |
'position': 1 // Product position (number). | |
}); | |
// The product being viewed. | |
ga('ec:addProduct', { // Provide product details in an productFieldObject. | |
'id': 'P67890', // Product ID (string). | |
'name': 'YouTube Organic T-Shirt', // Product name (string). | |
'category': 'Apparel/T-Shirts', // Product category (string). | |
'brand': 'YouTube', // Product brand (string). | |
'variant': 'gray', // Product variant (string). | |
'position': 2 // Product position (number). | |
}); | |
ga('ec:setAction', 'detail'); // Detail action. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Identify the promotion that was clicked. | |
ga('ec:addPromo', { | |
'id': 'PROMO_1234', | |
'name': 'Summer Sale', | |
'creative': 'summer_banner2', | |
'position': 'banner_slot1' | |
}); | |
// Send the promo_click action with an event. | |
ga('ec:setAction', 'promo_click'); | |
ga('send', 'event', 'Internal Promotions', 'click', 'Summer Sale'); // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ga('ec:addPromo', { // Promo details provided in a promoFieldObject. | |
'id': 'PROMO_1234', // Promotion ID. Required (string). | |
'name': 'Summer Sale', // Promotion name (string). | |
'creative': 'summer_banner2', // Creative (string). | |
'position': 'banner_slot1' // Position (string). | |
}); | |
//add a hit to send this (pageview or scroll tracking for greater accuracy) | |
ga('send', 'pageview'); // Send the data with initial pageview. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ga('ec:addProduct', { // Provide product details in a productFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'Black', // Product variant (string). | |
'position': 1, // Product position (number). | |
'dimension1': 'Member' // Custom dimension (string). | |
}); | |
ga('ec:setAction', 'click', { // click action. | |
'list': 'Search Results' // Product list (string). | |
}); | |
//send using a click button hit event | |
// Send click with an event, then send user to product page. | |
ga('send', 'event', 'UX', 'click', 'Results'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// (On "Next" button click) | |
ga('ec:setAction', 'checkout_option', {'step': 2, 'option': 'FedEx'}); | |
ga('send', 'event', 'Checkout', 'Option', { | |
hitCallback: function() { | |
// advance to next page | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ga('ec:addProduct', { // Provide product details in an productFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'black', // Product variant (string). | |
'price': '29.20', // Product price (currency). | |
'quantity': 1 // Product quantity (number). | |
}); | |
// Add the step number and additional info about the checkout to the action. | |
ga('ec:setAction','checkout', { | |
'step': 1, | |
'option': 'Visa' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Refund an entire transaction. | |
ga('ec:setAction', 'refund', { | |
'id': 'T12345' // Transaction ID is only required field for full refund. | |
}); | |
// Refund a single product. | |
ga('ec:addProduct', { | |
'id': 'P12345', // Product ID is required for partial refund. | |
'quantity': 1 // Quantity is required for partial refund. | |
}); | |
ga('ec:setAction', 'refund', { | |
'id': 'T12345', // Transaction ID is required for partial refund. | |
}); | |
//making it non interactive | |
ga('send', 'event', 'Ecommerce', 'Refund', {'nonInteraction': 1}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ga('ec:addProduct', { // Provide product details in an productFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'black', // Product variant (string). | |
'price': '29.20', // Product price (currency). | |
'coupon': 'APPARELSALE', // Product coupon (string). | |
'quantity': 1 // Product quantity (number). | |
}); | |
ga('ec:setAction', 'purchase', { // Transaction details are provided in an actionFieldObject. | |
'id': 'T12345', // (Required) Transaction id (string). | |
'affiliation': 'Google Store - Online', // Affiliation (string). | |
'revenue': '37.39', // Revenue (currency). | |
'tax': '2.85', // Tax (currency). | |
'shipping': '5.34', // Shipping (currency). | |
'coupon': 'SUMMER2013' // Transaction coupon (string). | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment