We are using the default LivePerson LiveEngage 2.0 tag. When the object is created in lpTag it is missing the cart node in the json. Products and other metadata are correctly set up in the lpTag array, just not nested in a cart. The example below is a functional call that flows through which we have manually created. lpTag.sdes.push({
"type": "purchase",
"orderId":"Move Request",
"cart": {
"products": [
{
"product": {
"name": "4444444",
"category": "A",
"sku": "2018-08-27"
}
},
{
"product": {
"name": "11111",
"category": "B",
"sku": "2018-08-29"
}
}
]
}
}); The example below is from the default tealium tag and does not insert the cart component into the lpTag object. lpTag.sdes.push({
"type": "purchase",
"orderId":"Move Request",
"products": [
{
"product": {
"name": "4444444",
"category": "A",
"sku": "2018-08-27"
}
},
{
"product": {
"name": "11111",
"category": "B",
"sku": "2018-08-29"
}
}
]
}); Is there a setting we can use in the tag config to set this cart layer??? Cheers, Tim
... View more