Logo

Hello there! How can we help you?

Get your answers directly from the Convious team...

Guide on Tracking Pixels

Convious Onboarding

Guide on Tracking Pixels

If you want your ticket shop to be tracked via tracking pixels, you can supply these scripts to the Convious support team.

Last updated on 04 Feb, 2026

This is a short guide on what you need to know

Tracking pixel HTML type does not support <script> tags. So the most useful case is with <img> tag:

&lt;img    border="0" width="1" height="1"    src="https://t.adcell.com/t/track?pid=8193&amp;eventid=10435&amp;referenz=ABC_123&amp;betrag=123.45"&gt;

 

If you have <script> tag use Javascript type filed and use this snippet:

var script = document.createElement("script");script.type = "text/javascript";// change urlscript.src = "https://t.adcell.com/js/trad.js";document.head.appendChild(script);


To add information about an order use the following tags:

[event_date] - order event date
[account_slug] - account slug
[discount_code] - used discount code
[transaction_id] - order uuid
[product_name] - order number
[currency_code] - currency code
[total] - order total amount

Example:

&lt;img src="https://t.adcell.com/?referenz=[transaction_id]&amp;betrag=[total]"&gt;

This will be populated to:

&lt;img src="https://t.adcell.com/?referenz=order-uuid&amp;betrag=123.45"&gt;

 

When will the scripts be executed?

Either on the initial website load (Javascript and HTML scripts) or once a user enters a ticket download screen (Javascript).

Did you find this article helpful?
Previous

Ticket Shop Tracking

Next