adsbygoogle.push() error: Only one AdSense head tag supported per page. The second tag is ignored.", name: "TagError", pbr: true, stack: "TagError: adsbygoogle.push() error: Only one AdSen…sbygoogle.js?client=ca-pub-38.
Answer
Option 1.
The quickest way to check the your auto ads code injections in your html page by opening the source code view of your website in your browser. Use the search function and search for “adsbygoogle” to jump directly to those injections.
Example of the new AdSense Auto Ads code
<script data-ad-client="ca-pub-****************" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
Example of the old AdSense Auto Ads code
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-****************",
enable_page_level_ads: true,
tag_partner: "site_kit"
});
</script>
Comments