Pickup Details

Triggered whenthe user enters pickup information and clicks to advance to the next step in the checkout flow.

Properties:

NameTypeDescription
eventCategorytextWix category
eventActiontextMore detailed event name
eventLabeltextWix App name, i.e Stores, Bookings
contentsarrayAll purchased products
contents.IdtextProduct ID
contents.nametextProduct name
isPremiumbooleanWhether the Wix site is Premium
userIdtextUser ID
metaSiteIdtextWix site ID

Example:

Copy
1
trackEvent(‘CustomEvent’,
2
{
3
"eventCategory": "Enhanced Ecommerce - Stores",
4
"eventAction": "Pickup Details",
5
"eventLabel": "Stores",
6
"contents": [{
7
"id": "T123",
8
"name": "Running shoes",
9
"..."
10
}]
11
}
Was this helpful?
Yes
No