Leveraging Cross Visit Participation for Referring Domains Reporting in Omniture SiteCatalyst

One question that I was asked recently was to produce a report that showed which combination of referrers that have contributed to the most/least orders on the site.  This question can’t currently be answered with the out of the box setup that Omniture SiteCatalyst provides via its s_code.js file logic.Currently, the referring domains report gives credit to the last touchpoint (i.e. the last referrer that then lead to a success). However, Omniture offers a great plugin called the cross visit participation plugin which allows you to “stack” the referrer values to see which referrers or combination of them received credit for success events and other commerce related data (orders, revenue, units sold, etc.) for a specific number of visits.  This blog posting discusses how you would go about setting that up.What you need:- cross visit participation plugin (provided by Omniture ClientCare)- one (1) eVar variableStep 1 is to implement the cross visit participation plugin within your s_code.js file.  Contact your Account Manager or ClientCare for details on how to get and configure the plugin to your specific reporting needs.Once you have that in place you will need to add the following logic to the s_code file:/* Referrer Cross Visit Participation Tracking */if (document.referrer != ” && document.referrer != ‘undefined’ && !(document.referrer.indexOf(“yourcompany.com”) > -1)) {var refStringArray = document.referrer.split(‘/’);if (refStringArray != ‘undefined’ && refStringArray.length > 0) {s.eVar1 = s.crossVisitParticipation(refStringArray[2],’s_ev01′,’30′,’5′,’>’,'purchase’); //30 day cookie}}That’s it.  Pretty simple enough but it provides a great deal of insight into which referrers drive the most successes to your site.  Arming your marketing and acquisition teams with this knowledge will allow them to better tailor their spend on areas that work and not ones that don’t.  The last event, purchase, can be tweaked to be registrations or whatever event you deem most important.



Written by:

Omniture, SiteCatalyst, Web Analytics

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.

Comments

13 Responses to “Leveraging Cross Visit Participation for Referring Domains Reporting in Omniture SiteCatalyst”

Leave Comment

(required)

(required)