Third-party banner codes
Adserving (ex. Sizmek) code
- The template used:
Banner HTML5 [context]
. - Wrap the banner code in the
<html>
and<body>
tags. - In the
<script>
tag attribute, replace the[timestamp]
value with%system.random%
in theord
parameter and add thencu
parameter with the%request.reference_mrc:urlenc%
value.
Note
You can delete the <noscript></noscript>
section, because Adfox doesn't work with JavaScript disabled.
Example of a ready-made code to insert in Adfox:
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script src="https://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=rsb&c=28&pli=28962919&PluID=0&w=240&h=400&ord=%system.random%&ncu=%request.reference_mrc:urlenc%"></script> </body> </html>
Weborama code
-
The template used:
Banner HTML5 [context]
. -
Wrap the banner code in the
<html>
and<body>
tags. -
Add macros:
- To the
random
parameter, add a randomizing%system.random%
macro. - To the
clicktrackers
parameter, add a%request.reference_mrc%
macro for tracking clicks.
- To the
-
If necessary, add links:
- Add a link for tracking impressions to the
imptrackers
parameter. - Add a link for tracking clicks to the
publisherclick
parameter.
- Add a link for tracking impressions to the
Example of a ready-made code to insert in Adfox:
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <div id="weborama" style="text-align:center;"> <script id="wcm_async_tag"> var adperfobj = { account_id : *** ,tracking_element_id : *** ,width : xxx ,height : xxx ,random : '%system.random%' ,fullhost : 'wcm-ru.frontend.weborama.fr' ,burst : 'auto' ,imptrackers : [] ,clicktrackers : ['%request.reference_mrc%'] ,publisherclick : '[PUBLISHER_TRACKING_URL]' }; (function(w,e,b,o ,a,s,y,n,c){w[e]=w[e]||[];n=b[o](a);s.marker=n;w[e].push(s);c=b.createElement('script');c.src=y;n.parentNode.insertBefore(c,n);n.id=''}(window,'wcm_ad_objs',document,'getElementById','wcm_async_tag',adperfobj,'//cstatic.weborama.fr/js/advertiserv2/adperf_launch_1.0.0_scrambled.js')); </script> </div> </body> </html>