Dear AdPlugg Support Team!
From our Client we got an Click Tracking URL as well as an Impression Tracking URL.
Within the page for the Ad settings (https://www.adplugg.com/apusers/ad/ads/13946) I only find a input field for the Click Trough URL.
Where can I implement the Impression Tracking URL?
Thank you for your help!
Edit: 2022-01-27
We now have a "Trackers" feature available as a limited release feature. For anyone interested, please contact us to have the Trackers feature added to your account.
----
Hi, we don't (at this point) have a way to add additional tracking pixels (often called piggyback pixels) to our standard ad formats. You can however, add them (and whatever else you want) to AdPlugg's "Custom" ad format. Here's an example of how to create a custom ad that includes an additional tracking pixel. Note that (as described in the comments) AdPlugg inserts the click through url and click target when the ad is served. You'll need to update this code to supply the path to your ad image and the path to your impression tracking pixel.
<script type="text/javascript">
//NOTE: These variables will be automatically set by AdPlugg when the ad is served.
var clickTag = "";
var clickTarget = "_blank";
</script>
<a rel="nofollow" target="_self" href="#" onclick="if(clickTarget == '_blank') {window.open(clickTag, '_blank');} else {location.href = clickTag;}">
<img width="300" height="250" src="PUT_PATH_TO_AD_IMAGE_HERE">
</a>
<img src="PUT_IMPRESSION_TRACKING_PIXEL_URL_HERE" style="display: none;">
Additionally, if you could, please add your request for a way to add additional impression tracking urls to the image and other ad formats on our Feedback and Ideas forum, we'll work to get the feature put in!