It ensures that every time someone clicks on your ad, the necessary tracking parameters are passed to ClickSambo for analysis.
Log in to your ClickSambo dashboard.
Navigate to Account Settings > Domain Tracking Setup.
Locate the domain you are configuring and click the Detail button next to it.
Find the field labeled Tracking Template and copy the entire code structure.
Where to paste it: In your Google Ads account, go to Settings > Account Settings > Tracking and paste the code into the Tracking template field.
It looks like this;
https://**ping.clicksambo.com/tracker/track?track_id=unique-id&adspot={adposition}&geocode={loc_physical_ms}&intgeo={loc_interest_ms}&adgr={adgroupid}&sterm={keyword}&adnet={network}&target_url={lpurl}&campid={campaignid}&userdev={device}&csurl=www.clicksambo.com&adplace={placement}&gclid={gclid}&adid={creative}&mtype={matchtype}&targetid={targetid}&feedid={feeditemid}&devmodel={devicemodel}&qtext={querystringtext}
These work together to monitor user behavior after the click occurs.
Log in to your ClickSambo dashboard.
Navigate to Account Settings > Domain Tracking Setup.
Locate your domain and click the Detail button.
You will see two separate code snippets that must be installed:
A. Tracking Code (Primary)
The primary JavaScript code for real-time analysis. It should be placed Inside the <head> section of your website, just before the closing </head> tag.
It looks like this;
<script src="https://cdn.clicksambo.com/scripts/your-unique-domain-id.js"></script>B. NoScript Code (Fallback)
What it is: A fallback code that tracks users who have JavaScript disabled.
Where to place it: Inside the <body> section of your website, immediately after the opening <body> tag.
It looks like this;
<noscript>
<img src="https://ping.clicksambo.com/clicksambo?uid=338757c4-40f5-4920-af10-ae2b17d9f987"
width="1" height="1" style="display:none;">
</noscript>