0

一个广告单元刚刚停止工作,在尝试生成新代码后仍然无法正常工作。当我使用谷歌控制台时,它只是显示警告广告单元无法获取。其他 3 个广告正常工作。它们是在我开始从事这个项目之前插入的。

像标题一样生成新的广告代码

<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') + 
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>

<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/6000854/R300x250_L', [300, 250], 'div-gpt-ad-1367703773182-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>

身体

    <!-- R300x250_L -->
<div id='div-gpt-ad-1367703773182-0' style='width:300px; height:250px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1367703773182-0'); });
</script>
</div>

旧代码像标题一样生成

<script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'></script>

    <script type='text/javascript'>
        GS_googleAddAdSenseService("ca-pub-2838961657718357");
        GS_googleEnableAllServices();
    </script>

    <script type='text/javascript'>
        GA_googleAddSlot("ca-pub-2838961657718357", "Top728x90");
        GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250");
        GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250Bottom");
    </script>

    <script type='text/javascript'>
        GA_googleFetchAds();
    </script>

身体

<!-- Right300x250Bottom -->
        <script type='text/javascript'>
            GA_googleFillSlot("Right300x250Bottom");
        </script>

是否可能由于不同的标签或代码而发生冲突注意:我只是 wordpress 前端开发人员,我无权访问 google DFP 服务,也没有生成标签或代码

4

1 回答 1

2

编辑:根据这个讨论,使用带有 GPT 标签的旧 GAM 标签现在可能是一个问题(就在最近)http://productforums.google.com/forum/#!topic/dfp/snK7znwUMBE

我认为您应该将 GAM 代码转换为 GPT 代码,并尽可能仅使用 DFP GPT 代码来阻止这种情况发生……这很可能是两个脚本之间的冲突,并且取决于它们加载的顺序,GPT 代码可能不会工作...

原文:我刚刚尝试了您的代码,并且按预期显示了两个广告。因此,同时使用这两个脚本似乎没有任何冲突。

您是否可能已经多次刷新页面,以至于由于速率限制而不再通过 DFP 为您展示广告?不过,这只是一个疯狂的猜测。如果我经常刷新页面,我确实会时不时地在控制台中收到无法获取消息,所以我认为这可能只是一个速率限制,普通用户不会遇到问题。

这是我正在使用的代码,页面上显示了两个 300x250 的广告,因此一切正常。

<html>
<head>
    <title>DFP TEST</title>

    <script type='text/javascript'>
    var googletag = googletag || {};
    googletag.cmd = googletag.cmd || [];
    (function() {
    var gads = document.createElement('script');
    gads.async = true;
    gads.type = 'text/javascript';
    var useSSL = 'https:' == document.location.protocol;
    gads.src = (useSSL ? 'https:' : 'http:') +
    '//www.googletagservices.com/tag/js/gpt.js';
    var node = document.getElementsByTagName('script')[0];
    node.parentNode.insertBefore(gads, node);
    })();
    </script>

    <script type='text/javascript'>
    googletag.cmd.push(function() {
    googletag.defineSlot('/6000854/R300x250_L', [300, 250], 'div-gpt-ad-1367703773182-0').addService(googletag.pubads());
    googletag.pubads().enableSingleRequest();
    googletag.enableServices();
    });
    </script>

<script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'></script>

    <script type='text/javascript'>
        GS_googleAddAdSenseService("ca-pub-2838961657718357");
        GS_googleEnableAllServices();
    </script>

    <script type='text/javascript'>
        GA_googleAddSlot("ca-pub-2838961657718357", "Top728x90");
        GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250");
        GA_googleAddSlot("ca-pub-2838961657718357", "Right300x250Bottom");
    </script>

    <script type='text/javascript'>
        GA_googleFetchAds();
    </script>

</head>
<body>

    <!-- R300x250_L -->
<div id='div-gpt-ad-1367703773182-0' style='width:300px; height:250px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1367703773182-0'); });
</script>
</div>

<!-- Right300x250Bottom -->
        <script type='text/javascript'>
            GA_googleFillSlot("Right300x250Bottom");
        </script>

</body>
</html>
于 2013-05-07T12:55:50.977 回答