Last active
August 30, 2023 16:10
-
-
Save elephantsneverforget/cb03c5e128742540bf7b886c982d9266 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
window.ElevarPushToDataLayer({ | |
event: "dl_add_to_cart", // this is the event name that is used in the transformation | |
// NOT REQUIRED FOR ADD TO CART user_properties: userProperties, | |
ecommerce: { | |
currencyCode: "USD", | |
add: { | |
actionField: { | |
list: location.pathname // this should be the collection page URL that user clicked product from | |
}, | |
products: [{ | |
id: "LB00161-34689553170476", // SKU | |
name: "Lovebox Original Color & Photo", // Product title | |
brand: "Lovebox INC", | |
category: "Home,Living,Art & Objects,Tabletop", | |
variant: "USA wall plug", | |
price: "119.99", | |
quantity: "1", // Not required for dl_select_item & dl_view_item | |
position: item.position, // Only required for dl_select_item; position in the list of search results, collection views and position in cart indexed starting at 1 | |
list: "/art/wallhangings", // The list the product was discovered from | |
product_id: "6979886940352", // The product_id | |
variant_id: "41141193965760", // id or variant_id | |
compare_at_price: "139.99", // If available on dl_view_item & dl_add_to_cart otherwise use "0.0" | |
image: "https://cdn.shopify.com/small.png", // If available, otherwise use an empty string | |
inventory: "5" // If available, only required on dl_view_item | |
}, | |
... | |
] | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment