@Mario is correct that there is a parameter that will allow you to turn off this screen. However, this parameter does not exist in the Google user interface for remarketing tags, although they display this iframe (I think this is an error at the end of Google, since I believe that the google_remarketing_only = true flag should turn this iframe off and does not work correctly).
I found out that you can also set this in tracking JS by manually adding the flag "google_conversion_format = 3", for example:
<script type="text/javascript"> /* <![CDATA[ */ var google_conversion_id = 0123456789, google_conversion_label = "XXXXXXXX", google_custom_params = window.google_tag_params, google_remarketing_only = true, google_conversion_format = 3; /* ]]> */ </script> <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"></script>
It can be easier if you regenerate tags for some people and solves the problem if the user interface does not support setting this parameter when creating tags.
Adam Hamilton Aug 14 '13 at 20:13 2013-08-14 20:13
source share