Event tracking refers to the monitoring of interactions on your publication beyond a simple web page load. Event tracking provides data on how visitors are engaging (or not engaging) with your publication, making it possible to fine-tune SEO or other marketing campaigns to maximum effect.
Examples on reporting here.
DESCRIPTION |
EVENT NAME *limited to 40 characters |
INTERNAL CODE |
Catalog | ||
Triggered when the catalog is opened | CatalogOpen | gtag('event', 'CatalogOpen'); |
User interface | ||
Triggered when next page arrow is clicked | ButtonNextPage | gtag('event', 'ButtonNextPage', { } ); |
Triggered when previous page arrow is clicked | ButtonPreviousPage | gtag('event', 'ButtonPreviousPage', { } ); |
Triggered when last page arrow is clicked | ButtonLastPage | gtag('event', 'ButtonLastPage', { } ); |
Triggered when first page arrow is clicked | ButtonFirstPage | gtag('event', 'ButtonFirstPage', { } ); |
Triggered when homepage page button is clicked | ButtonHomePage | gtag('event', 'ButtonHomePage', { } ); |
Triggered when a search is made in the catalog | search | gtag("event", "search", { search_term: "t-shirts" }); |
Triggered when using the option to share the catalog | share | gtag("event", "share", { method: "Twitter", content_type: "image", item_id: "C_12345", }); |
Ecommerce | ||
Triggered when a product is viewed | Product | gtag("event", "view_item", { currency: "USD", value: 7.77, items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "searchResults", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 } ] }); |
Triggered when a product is added to wishlist | gtag("event", "add_to_wishlist", { currency: "USD", value: 7.77, items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 } ], }); |
|
Triggered when a product is added to cart | gtag("event", "add_to_cart", { currency: "USD", value: 7.77, items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 } ] }); |
|
Triggered when the wishlist is opened | gtag("event", "view_wishlist") | |
Triggered when a product is deleted from de cart | gtag("event", "remove_from_cart", { currency: "USD", value: 7.77, items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 } ] }); |
|
Triggered when the checkout is started | gtag("event", "begin_checkout", { currency: "USD", value: 7.77, coupon: "SUMMER_FUN", items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 } ] }); |
|
Triggered when the checkout is made | gtag("event", "purchase", { transaction_id: "T_12345", value: 25.42, tax: 4.90, shipping: 5.99, currency: "USD", coupon: "SUMMER_SALE", items: [ { item_id: "SKU_12345", item_name: "Stan and Friends Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 2.22, index: 0, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "green", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 9.99, quantity: 1 }, { item_id: "SKU_12346", item_name: "Google Grey Women's Tee", affiliation: "Google Merchandise Store", coupon: "SUMMER_FUN", discount: 3.33, index: 1, item_brand: "Google", item_category: "Apparel", item_category2: "Adult", item_category3: "Shirts", item_category4: "Crew", item_category5: "Short sleeve", item_list_id: "related_products", item_list_name: "Related Products", item_variant: "gray", location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo", price: 20.99, promotion_id: "P_12345", promotion_name: "Summer Sale", quantity: 1 }] }); |
|