Tracking Advertising Effectiveness in Omniture SiteCatalyst
This posting discusses how to track how ads are performing on your site. You will be able to see/report on ad impressions, clicks, click-through rates (CTRs) and the end success event (whether that be registrations, enrollments, etc) and be able to identify which pages/section/content types are generating the high CTRs and success events.What you will need:
- s.products –> for Ad IDs (both impressions and clicks)
- one (1) eVar to capture the Promotion Ad ID (this will capture clicks only)
- two (2) success events (one will capture ad impressions and one will capture ad clicks)
On the page load for the page that you wish to track the advertising for, set the s.products string with the Ad IDs and set the events to a free success event. If there is more than one ad that you wish to track, pass a delimited list of IDs. An example is below for both:s.products=”;ad_xyz123″;s.events=”event1″;Within the ad (or each ad if there is more than one), you will need to an an OnClick event to each destination URL of the ad. You will also set the s.eVar and s.products variable with the associated Ad ID and set the s.events variable to the other success event allocated for this effort. An example of this is:<a href=”/blog/abc.asp” onClick=”var s=s_gi(s_account);s.products=’;ad1_xyz123′;s.eVar1=’ad1_xyz123′;s.events=’event2′;s.linkTrackVars=’events,products,eVar1′;s.linkTrackEvents=’event2′;s.tl(this,’o',’Ad XYZ123′);”>link name here</a>You should make sure that the eVar that you are using has full subrelations turned on so that you can see and breakdown that by all other eVars captured. Leverage SAINT to bring in additional attributes such as creative size, type, etc. to see more insight into what is working and whats not.Now you can begin to focus your efforts towards those with the highest ROI instead of highest CTR.
Written by:
Dorian D. Regester
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.


Very clever
This looks like a well thought out solution design, but I have a few questions:1. I assume you use s.products so that you only need one call to track all of the ad impressions on the page. Is that correct?2. What sort of expiration would you recommend for eVar1?3. How, if at all, would you change this solution if the ads open in a new tab/window vs. the same tab?Thanks a lot for posting this. I look forward to reading some more of your solutions.
That’s the best description I’ve read so far on event tracking! You made it sound very easy. Thanks