GPT (тег издателя Google) - показывать одну и ту же рекламу в разных местах - НЕ НУЖЕН

У меня проблема, я показываю одно и то же объявление на 2 разных слотах. Я разрабатываю переход от старой системы к новой.

В старой системе все объявления доставляются одним нажатием, а в новой - я воспринимаю объявления как отдельные лица и нажимаю по одному разу. Я думаю, что при работе в режиме ASYNC это должно работать, но я не могу найти что-либо касающееся этого в документации. Кроме того, я пытаюсь сделать пуш с большим количеством слотов, но мне не повезло.

Вопросы: 1- нормально ли это поведение? Если для двух или более разных слотов назначено объявление, если я отображаю эти слоты на одной странице, должно ли показываться одно и то же объявление?

2- Мне нужно включить сервисы, с большей частью рекламы, или другая идея не будет работать?

Что я должен сделать, чтобы не показывать одно и то же объявление в двух разных местах на одной странице?

Здесь я оставил несколько примеров моего кода.

Старая Система:

  googletag.cmd.push(function() {
    var header_bannerMapping = googletag.sizeMapping().
      addSize([0,0], []).
      addSize([641, 100], [[728, 90], 'fluid']).
      build();
    googletag.defineSlot('/36477557/RE_SER_728x90', [[728, 90], 'fluid'], 'div-gpt-ad-1472589965215-2').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke').defineSizeMapping(header_bannerMapping);
    googletag.defineSlot('/36477557/RE_SER_300x250_TOP', [[300, 600], [300, 250]], 'div-gpt-ad-1472589965215-1').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
    googletag.defineSlot('/36477557/RE_SER_300x250_BOTTOM', [300, 250], 'div-gpt-ad-1472589965215-0').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
    var nativeMapping = googletag.sizeMapping().
      addSize([0,0], [284, 286]).
      addSize([641, 100], [647, 162]).
      build();
    googletag.defineSlot('/36477557/RE_NATIVE', [[647, 162], [284, 286]], 'div-gpt-ad-1472590044177-0').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke').defineSizeMapping(nativeMapping);
    var native_bottomMapping = googletag.sizeMapping().
      addSize([0,0], [284, 286]).
      addSize([641, 100], [647, 162]).
      build();
    googletag.defineSlot('/36477557/RE_NATIVE_BOTTOM', [[647, 162], [284, 286]], 'div-gpt-ad-1472590044177-1').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke').defineSizeMapping(native_bottomMapping);
    var mobileMapping = googletag.sizeMapping().
      addSize([0,0], ['fluid']).
      addSize([641, 100], []).
      build();
    googletag.defineSlot('/36477557/RE_MOBILE_LB', ['fluid'], 'div-gpt-ad-mobile').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke').defineSizeMapping(mobileMapping);
    googletag.defineSlot('/36477557/Tile_1', [300, 90], 'div-gpt-ad-1504126727583-0').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
    googletag.defineSlot('/36477557/Tile_2', [300, 90], 'div-gpt-ad-1504126727583-1').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
    googletag.defineSlot('/36477557/Tile_3', [300, 90], 'div-gpt-ad-1504126727583-2').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
    googletag.pubads().collapseEmptyDivs();

    // Add Krux into googletag. Segments and user are defined in the Krux partial
    googletag.pubads().setTargeting("ksg", Krux.segments);
    googletag.pubads().setTargeting("kuid", Krux.user);

    googletag.enableServices();
  });

Новая система:

    googletag.cmd.push(function() {
      googletag.defineSlot('/36477557/Tile_1', [300, 90], 'div-gpt-ad-1504126727583-0').addService(googletag.pubads()).setTargeting('brand', 'res_sale').setTargeting('regions', 'Bay of Plenty').setTargeting('districts', 'Western Bay Of Plenty').setTargeting('suburbs', 'Te Puke');
      googletag.pubads().setTargeting("ksg", Krux.segments);
      googletag.pubads().setTargeting("kuid", Krux.user);
      googletag.enableServices();
    });

0 ответов

Другие вопросы по тегам