htmlgoogle-ad-managergoogle-web-designer

"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":

Tap area clickTag

Problem: When importing the resulting ZIP into Google Ad Manager, I get an error:

Missing click tag. Add a valid click tag or exit function before uploading the creative to Ad Manager.

What am I doing wrong?

By the way:


Solution

  • 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 :

    1. Go to "File"
    2. Then "Ad Environment"
    3. 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.