Advertisement
FilipFD

eec.promotionView - theOFMP

Apr 1st, 2021 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. window.dataLayer = window.dataLayer || [];
  3. window.dataLayer.push({
  4.     'event': 'eec.promotionView',                  
  5.     'ecommerce': {                              // ecommerce object. This is the essential part of tracking. New data must always be pushed to this object
  6.         'promoView': {                          // name of an action. In this case, always stays as promoView
  7.           'promotions': [                       // list of promotions or banners displayed to the user
  8.            {
  9.              'id': 'ofmp-bornbred-banner',                      // Unique identifier for the promotion.      
  10.              'name': 'Born and bred in Texas ',             // Name of the promotion.
  11.              'creative': 'Gray Banner Homepage',        // A name for the creative where the promotion banner is showing.
  12.              'position': 'slot1'                    // Some way to distinguish the position of the promotion in the creative (e.g. first slide of a carousel).
  13.             },             
  14.            {
  15.              'id': 'ofmp-global-track-record',          
  16.              'name': 'Global Track Record',
  17.              'creative': 'Red Banner Homepage',
  18.              'position': 'slot2'      
  19.             }]
  20.         }
  21.   }
  22. });
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement