Event Tracking

Included events

The following events are defined out-of-the-box for you when you activate the Prestashop module. These cover all the standard functionality required.

Adding events

You may track additional or custom events in your store by adding the corresponding zlt.track(); javascript function on your website.

/* Example of a custom event */
zlt.track('My Custom Event', {
    param_one: 'Some value',
    param_two: 123
});

Last updated