Skip to content

Instantly share code, notes, and snippets.

@paulca

paulca/gtm.js Secret

Created November 23, 2021 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulca/96332c5dc8db3980711fd373d5b02c52 to your computer and use it in GitHub Desktop.
Save paulca/96332c5dc8db3980711fd373d5b02c52 to your computer and use it in GitHub Desktop.
Tito Widget V2 Google Tag Manager
export default function () {
console.info("[tito][gtm]", "plugin loaded");
window.dataLayer = window.dataLayer || [];
tito("on:widget:loaded", function (event) {});
tito("on:registration:started", function (registration) {
console.info("[tito][gtm]", "tracking registration started");
const items = [];
registration.line_items.forEach(function (item) {
items.push({
id: item.id,
name: item.title,
price: item.price,
category: registration.event.title,
brand: registration.account.name,
quantity: item.quantity,
});
});
const eventData = {
items: items,
coupon: registration.discount_code,
};
dataLayer.push({
event: "tito:registration:started",
ecommerce: {
checkout: {
actionField: { step: 1 },
products: items,
},
},
});
});
tito("on:registration:finished", function (registration) {
console.info("[tito][gtm]", "tracking registration finished");
const items = [];
registration.line_items.forEach(function (item) {
items.push({
id: item.id,
name: item.title,
price: item.price,
category: registration.event.title,
brand: registration.account.name,
quantity: item.quantity,
});
});
const actionField = {
id: registration.slug,
affiliation: registration.source || "tito.js",
revenue: registration.total,
};
if (registration.discount_code) {
actionField.coupon = registration.discount_code;
}
if (registration.receipt && registration.receipt.tax) {
actionField.tax = registration.receipt.tax;
}
dataLayer.push({
event: "tito:registration:finished",
ecommerce: {
currencyCode: registration.currency,
purchase: {
actionField: actionField,
products: items,
},
},
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment