Overview
A typical Omniture integration will require customization work by the ONEsite team, based off the needs of the individual client. Please speak to your Project Manager for more information on integration with Omniture.
To set up, the client will need to provide ONEsite with their unique identifier and any associated javascript files.
<!-- SiteCatalyst code version: H.20.3.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com -->
<script language="JavaScript" type="text/javascript">
var s_account="uniqueclientidentifier"
</script>
The client will work with ONEsite to assign all channels and props needed.
Output Examples
User Profile Page
var title=document.title;
var a1 = "profiles";
var a2 = "your-profile";
s.channel="clientname/domain/profiles/your-profile";//this will return the full section paths
s.prop1="clientname";
s.prop2="clientname/domain";
s.prop3="clientname/domain/profiles";
s.prop19="clientname/domain/profiles/your-profile";
s.pageName =s.prop2 + "/" + title;
Discussions Page (Forums)
var title=document.title;
var a1 = "discussions";
var a2 = "community-discussions";
s.channel="clientname/domain/discussions/community-discussions";//this will return the full section paths
s.prop1="clientname";
s.prop2="clientname/domain";
s.prop3="clientname/domain/discussions";
s.prop19="clientname/domain/discussions/community-discussions";
s.pageName =s.prop2 + "/" + title;