Skip to content

Ad Server Installation Examples

We can take advantage of the Ad Server Plugin's ability to render customizable media types and render a combination of different Orbee Site Plugins within it. Additionally, the Ad Server provides us with a variety of ways to customize and control what content gets rendered and where.

Installing the Personalized Navigation Bar

The installation method is exactly the same as describe in the Ad Server Plugin's documentation. Once the Ad Server ORB element has been installed, the Personalized Navigation Bar will render within it. Below is an example of how the elements should look render before and after the Ad Server Plugin initializes.

Before Initialization

<orb id="orb-ad-{AD_SERVER_PLUGIN_ID}"
     data-type="ad-placement"
     data-plugin-id="{AD_SERVER_PLUGIN_ID}">    
</orb>
<div data-orb
     id="orb-ad-{AD_SERVER_PLUGIN_ID}"
     data-type="ad-placement"
     data-plugin-id="{AD_SERVER_PLUGIN_ID}">
</div>

After Initialization

<orb id="orb-ad-{AD_SERVER_PLUGIN_ID}"
     data-type="ad-placement"
     data-plugin-id="{AD_SERVER_PLUGIN_ID}">

<orb id="orbee-personalized-experience"
     data-type="navbar"
     data-plugin-id="{NAV_BAR_PLUGIN_ID}"
     data-default="hide">

     ....

</orb>

</orb>
<div data-orb
     id="orb-ad-{AD_SERVER_PLUGIN_ID}"
     data-type="ad-placement"
     data-plugin-id="{AD_SERVER_PLUGIN_ID}">

     <div data-orb
     id="orbee-personalized-experience"
     data-type="navbar"
     data-plugin-id="{NAV_BAR_PLUGIN_ID}"
     data-default="hide">

     ....

</div>

</div>