"Missing Click Tag" Despite Google Ad Manager Tap Area Exit Event
In Google Web Designer, I want to create an HTML5 ad. I added a tap area and set its 'Metrics ID' to 'clickTag': Problem: When importing the resulting ZIP into Google Ad Manager,
Solution 1:
First: you need to use the right 'ad environment' to be able to upload ad Web Designer creative in Ad Manager.
When you create your file, chose "Display & Video 360". You should also be able to switch the ad environment :
- Go to "File"
- Then "Ad Environment"
- Click on "Display & Video 360"
See here for more details about the ad environment.
Second : make sure your creative follow the creative & click tag guidelines detailed here.
In your case : simply erase "Metrics ID" value or change its value to something else do not set any URL up (it will be done in Ad Manager when trafficked) amend the html as per the following example :
<html>
<head>
<meta name="ad.size" content="width=300,height=250">
<script type="text/javascript">
var clickTag = "YOUR_DESTINATION_URL"; </script>
</head>
<a href="javascript:void(window.open(clickTag))">
<img src="images/dclk.png" border=0>
</a>
</html>
Normally, this should allow Ad Manager to recognize your creative clicktag.
Post a Comment for ""Missing Click Tag" Despite Google Ad Manager Tap Area Exit Event"