Can I add a pixel or tracking code to my account?
Our team is happy to add tracking codes or pixels to your account! Simply contact support with the code you wish to add. Once submitted, our engineering team will review the code and, if approved, it will be added to your account.
By default, our team will add your code to the footer unless you specifically request it to be added to the header.
What can I track?
What you can track is completely depending on the type of tracking you wish to use and how that tracking is configured. For example, Google Analytics, Google Tag Manager, and Facebook Pixels are all engineered to track different items. As this technology is always changing, it's best to check with your provider directly on what they are able to provide. You can check out these helpful guides for more information:
My tracking does not seem accurate - why is this?
If you are using cookie consent (required for GDPR), your tracking codes or pixels will not be loaded until the user explicitly consents to the relevant cookie type.
The user does so by selecting their preferred cookie options when registering for or first visiting your program. This opt-in is an important part of GDPR compliance.
Please see 'Cookies in use' banner explained for more information.
Why is my tracking code classified as a marketing cookie?
Facebook Pixel and Google's Google Tag Manager (GTM) are considered marketing cookies as both are used to deliver targeted marketing to users.
However, we do acknowledge GTM code can sometimes be used for analytics purposes only. Please see 'Cookies in use' banner explained for more information.
Should your GTM code only be used for analytics and you would like your code reclassified, please submit a request stating that this code is for analytical purposes only.
Examples
Facebook pixel:
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '{your-pixel-id-goes-here}');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id={your-pixel-id-goes-here}&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
Google tag
<script async
src="https://www.googletagmanager.com/gtag/js?id=TAG_ID">
</script>
<script>
window.dataLayer = window.dataLayer || [] ;
function gtag(){dataLayer.push(arguments);}
gtag( 'js', new Date () ) ;
gtag( 'config', 'TAG_ID');
</script>