Agree to Terms

Triggered when the user check the Agree to terms & conditions’ checkbox.

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",
4
"eventAction": "Agree To Terms",
5
"eventLabel": "Stores",
6
"contents":[{
7
"id": "T123",
8
"name": "Running shoes",
9
"..."
10
}]
11
}
Was this helpful?
Yes
No