Elevating Your Content Revenue: A Publisher’s Guide to Mastering Ad Manager Setup

Tempo de leitura: 7 minutos
Leonardo Couto
Reading Time: 7 minutes

For publishers looking to monetise their content, mastering Ad Manager setup is essential. We’ve created a specialised, free certification to help publishers maximise their online revenue, available at academy.alright.global. This certification is essential for those who want to effectively improve their advertising strategy. Starting with the basics of an MCM Invitation – Manage Account (MA), this guide provides the essential information needed to delegate account management, including an Ad Manager access email, an administrator role and your network code.

This content provides detailed guidance on managing account invitations, understanding the importance of an administrator role in Ad Manager, and the step-by-step process for enabling Ad Exchange.

MCM Invitation – Manage Account (MA)

Required information to send an invitation for manage account delegation:

  • Email with access to Ad Manager, administrator role (necessary to approve the invitation)
  • Network code, which can be found in Admin > Global settings, or below the network display name in the top left corner of the screen, beneath the Ad Manager logo:

Note: For sending the invitation to MA, the required data is the email with administrator role in Ad Manager and the network code. The publisher must already have an Ad Manager, and for that, they also need to have an Adsense account.

Read: How to create an Ad Manager account.

Accepting the invitation

The invitation will be accepted within the Ad Manager UI, available in Admin > Multiple Customer Management (located below Policy center):

In this section, under the Parent publishers tab, you will find the list of networks that have sent invitations and want to connect with you or are already connected.

To approve the connection, you should click on the network, and in the window that opens with information about the connection, you should click Accept:

Tip: In Multiple Customer Management, you can have up to 15 networks in Manage Inventory (MI) and only one in Manage Account (MA) model, provided that the managed inventories (ad units) are different. It is not allowed to have multiple requests to Google in one impression, both for more than one Ad Exchange network and for Ad Exchange and Adsense requests.

Google’s demand is the same, so think carefully before connecting multiple partners, as it requires control and management of these connections, and may not necessarily represent an increase in fill rate or revenue of your inventory.

Enabling Ad Exchange

Disabling Adsense

To enable Ad Exchange, first, you’ll need to disable Adsense. Go to Inventory > Network settings:

Uncheck the option Maximize revenue from unsold inventory with Google AdSense and click Save.

Setting Ad Exchange

After disabling Adsense, go to Multiple Customer Management and click on the Ad Exchange tab (If the tab does not appear, reload the page) :

In this tab, the first item is the acceptance of Ad Exchange terms; after accepting the terms, you will be directed to the second item:

You can access it through the link or directly through the Inventory > Sites menu.

Click on New site:

You should add the URL without the www and without the http or https protocols as shown in the examples below: example.com, example.com.br or example.net.

Click Save. On the next page, you should copy the provided line and add it to your ads.txt file. Once done, check the option I’ve published the ads.txt file and click Done.

You can close the next window:

Important: Google may take up to two weeks to approve your URL, so please be patient 🙂

The last step is to activate Ad Exchange:

With the site approved and Ad Exchange activated, you are ready to configure the Ad Exchange order and start your monetization.

Order

In Delivery > Orders, click on New order:

Fill in the Name (use a name that facilitates the identification of the Ad Exchange order) and advertiser fields (you’ll need to create one if you haven’t already registered Google):

To create a new advertiser, in the advertiser field, click on the drop-down list in Add a new company, on the next screen, select in the type field, Advertising Network, and in the name field Google, click Save:

You will be directed to the previous screen (New order), click Add line item.

Line Item

Click Select display ad:

On the next screen, fill in the Name field (e.g., Ad exchange display) and select Ad Exchange(12) from the drop-down menu in the Line item type field:

In the Expected creatives field, activate All requested sizes:

In Advanced Settings, select the Web Property Alias from the dropdown menu, choose the Self-service AdX Display property:

In Display settings, select the Start time, Immediately, and in the End time, Unlimited from the drop-down menus:

In Add targeting, you can leave the default configuration or select the inventory where you want to monetize with Ad Exchange. Click Save.

Ad Exchange Creatives

Select the Creatives tab and click Generate creative automatically:

The creative has been generated:

 

Approving the Ad Exchange order

Select the Ad Exchange order, check the checkbox of the Ad Exchange line item, and click Approve:

Your order is now approved and ready to serve ads.

Ad Units

Now that your site is approved and your Ad Exchange order is ready, it’s time to map the positions and sizes you will implement on your site. Below is a list of the most used IAB formats and devices:

  • Desktop
    • 970×250
    • 970×90
    • 728×90
    • 300×600
    • 120×600
    • 160×600
  • Mobile
    • 320×100
    • 320×50
    • 300×100
    • 300×50
  • Desktop e Mobile
    • 300×250
    • 320×250
    • 336×280
    • fluid (flexível)

These are the sizes with the highest demand, ideal for monetization with Ad Exchange. For your direct sales, you can use custom sizes, but ideally, the same unit used for your direct advertisers should also serve programmatically when you don’t have an active campaign for it. This saves time and avoids unfilled impressions on your site. So, analyze carefully how your inventory will be configured.

Creating the ad unit in Ad Manager

In Inventory > Ad units, click New ad unit:

Fill in the Ad unit name field, the Sizes you want to use in this space, and click Save:

Tip: 

  • If you have more than one URL, you can create a parent ad unit for each URL and add child units within each parent unit to organize your inventory.
  • For interstitial and reward formats, you should select the _top targeting window.

Single ad unit

Click on the ad unit you want to generate the tag for, select the Tags tab, choose Google Publisher Tag as the tag type, and click Continue:

In the tag options, disable the Enable single request option, choose the size, and click Continue:

The result will be this:

Note: The second part of the code should be placed where the ad unit should load.

Multiple ad units

These are the same steps as above, but in the Tag options, enable Single request:

When implementing multiple units, it is important to note that the gpt.js implementation should be loaded only once per page:

				
					<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
    <script>
window.googletag = window.googletag || { cmd: [] };

googletag.cmd.push(() => {
  // Define static ad slots.
  googletag
    .defineSlot("/6355419/Travel/Europe", [300, 250], "slot0")!
    .addService(googletag.pubads());
  googletag
    .defineSlot(
      "/6355419/Travel/Europe",
      [
        [100, 100],
        [300, 250],
        [728, 90],
        [750, 200],
      ],
      "slot1",
    )!
    .addService(googletag.pubads());
  googletag
    .defineSlot("/6355419/Travel/Europe", [728, 90], "slot2")!
    .addService(googletag.pubads());

  // Enable single request mode.
  googletag.pubads().enableSingleRequest();

  // Enable GPT services.
  googletag.enableServices();

  // Request and render all previously defined ad slots.
  googletag.display("slot0");
});
</script>
    <style>
      .ad-slot {
        border: 1px dashed;
        display: inline-block;
        margin: 10px;
      }
      .page-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
    </style>
  </head>
  <body>
    <div class="page-content">
      <div id="slot0" class="ad-slot" style="min-height: 250px; min-width: 300px"></div>
      <div id="slot1" class="ad-slot" style="min-height: 90px; min-width: 100px"></div>
      <div id="slot2" class="ad-slot" style="min-height: 90px; min-width: 728px"></div>
    </div>
  </body>
</html>

				
			

Created with the sample-builder: https://developers.google.com/publisher-tag/sample-builder

It is important to observe the implementation for mobile and desktop devices. Desktop sizes should not be requested on mobile, as they interfere with the user experience, covering content, thus violating Google’s policies. If you want to make unique implementations for desktop and mobile, use sizes compatible with both devices, for example, 300×250; otherwise, separate implementations of these blocks will be necessary, or validate for desktop and mobile.

For implementation of other formats, please refer to the documentation below:

https://developers.google.com/publisher-tag/samples

Ad unit for AMP pages

Click on the ad unit you want to generate the tag for, select the Tags tab, choose AMP Tag as the tag type, and click Continue:

In the tag options, enable the option Enable validation for multiple sizes if you want to deliver more than one size in the space; otherwise, disable the option. Select the sizes and click Continue:

Place the tag in the position where the format should load on the AMP page.

Remember that at any time, you can use the Google Ad Manager Help, or Google Developers Guide

For publishers, navigating the process of setting up an Ad Manager account is a critical step in unlocking the full potential of content monetisation. The guidelines presented in this comprehensive guide lay the groundwork for establishing a successful online advertising operation. Attention to detail and patience throughout the setup process are critical to ensure a smooth transition from initial configuration to optimising ad units for different content types. We encourage publishers to explore our certification at academy.alright.global to gain a deeper understanding of the dynamics of digital advertising. As the publishing world continues to evolve, staying on top of advertising strategies and technological advancements is critical. With the right expertise and tools, your journey to improved content monetisation is well underway.

Copyright © 2024 ALRIGHT