在以编程方式添加广告单元时,Google DFP /广告管理系统会忽略“展示广告素材:仅限一个”和每用户频率

问题描述 投票:0回答:1

我的代码:

<head>
...
    <script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script>
    <script>
    var googletag = googletag || {};
    googletag.cmd = googletag.cmd || [];
    </script>

    <script>
        googletag.cmd.push(function() {
        googletag.pubads().enableSingleRequest();
        googletag.pubads().collapseEmptyDivs();
        googletag.pubads().disableInitialLoad();
        googletag.enableServices();
        });
    </script>
...
</head>

<body>
...
    <div id='ad-id-<?php echo $adcount ?>' style='height:600px; width:300px;'>
        <script>
            googletag.cmd.push(function() { 
            var slotname = "ad-id-<?php echo $adcount ?>;
            var slot = googletag.defineSlot('/22#####/ad_300_600', [300, 600], slotname).addService(googletag.pubads());
            googletag.display(slotname);
            googletag.pubads().refresh([slot]);
            });
        </script>
    </div>
...
</body>

这是作为循环的一部分运行的,当行数未知时,每隔X行放置一个广告。

我遇到的问题是即使将Display creatives:设置为Only one并将Per-user frequency设置为1 per 1 minute,我仍然会在页面上收到重复的广告。

有多个订单项,每个订单项都有1个广告素材。我想只展示一次广告。

php google-dfp google-ad-manager
1个回答
0
投票

根据文档(here),push函数在页面的头部声明,它必须包括:

  • sizeMapping(如果需要)
  • 插槽定义
  • 关键值设置
  • 标签选项

统一所有这些元素时,您应该能够链接广告素材,应用封顶等...

根据您当前的实施,您可以为每个广告位生成一个广告位定义。看起来很方便,但您没有同时提取广告请求,因此广告管理系统无法在您的广告位请求之间保留相同的相关因素。

以下是您可以执行的操作(您可能需要知道头部插槽定义中页面上将有多少个广告位):

<head>
...
<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
</script>

<script>
    googletag.cmd.push(function() {

    //slots definitions
    googletag.defineSlot('/22#####/ad_300_600', [300, 600], 'ad-id-<?php echo $adcount ?>').addService(googletag.pubads());

    //tag options
    googletag.pubads().enableSingleRequest();
    googletag.pubads().collapseEmptyDivs();
    googletag.pubads().disableInitialLoad();
    googletag.enableServices();
    });
</script>
...
</head>

<body>
...
<div id='ad-id-<?php echo $adcount ?>' style='height:600px; width:300px;'>
</div>
...

<script>
//your loop to generate the ad calls on each "ad-id-" placements
googletag.cmd.push(function() {
  var adunits = document.querySelectorAll('div[id^="ad-id-"]');
  for (var i = 0; i < adunits.length; i++) { googletag.cmd.push(function() {
    googletag.display(adunits[i].getAttribute('id')); }); }
  });   
</script>
</body>

© www.soinside.com 2019 - 2024. All rights reserved.