Track events

This steps require Mautic standard tracking code to website (right after <body>) Please add Mautic tracking code to your website

Tracking events by pixel

Just call every time when you need

mt('send', 'RecommenderEvent', { eventName: 'DetailView', itemId:'9-191' });
  • eventName - required

  • itemId - required

You can also to each events set your own parameters (price, profit, quantity...). Example:

mt('send', 'RecommenderEvent', { eventName: 'Cart', itemId:'9-191', price: '39', quantity: '2', profit: '9' });

Last updated