Top
Adobe Analytics (Omniture) Integration
  • 25 Jun 2024
  • 1 Minute zum Lesen
  • Dunkel
    Licht
  • pdf

Adobe Analytics (Omniture) Integration

  • Dunkel
    Licht
  • pdf

Artikel-Zusammenfassung

Sie können Adobe Analytics (Omniture) integrieren, um zu analysieren, wie Ihr Inhalt über Whatfix APIs funktioniert. Das Folgende kann in Advanced Customization eingefügt werden.

FunktionSkript
Laden Sie das Omniture-Tracking-SkriptWenn(document.querySelector('[id*="_UIScumil1u"]' ).title=='William Chua'){
var head = document.getElementsByTagName('head');
var script = document.createElement("script");
script.setAttribute ("src","https://whatfix.com/omniuture/Appmeasurement.js");
script.setAttribute("type","text/javascript");
head[0].appendChild(script);
Gemeinsamer Handler, um Whatfix-Ereignisse an Omniture zu sendenwindow._wfx_settings.onEvent = function(Seite,flow_id){
s.pageName = Seite;
s.channel = "direct";
s.prop1 = flow_id;
var s_code = s.t();if(s _code)document.write(s_code);
};
Wählen Sie eine Teilmenge der Whatfix Ereignisse aus, die Sie an Omniture weiterleiten möchten, und rufen Sie den gemeinsamen Handler aufwindow._wfx_settings.onStart =function(event)
{window._wfx_settings.onEvent('/flow/live/start',event.flow_id);};
window._wfx_settings.onShow =function(event)
{window._wfx_settings.onEvent('/flow/live/show'+event.step,event.flow_id);};
window._wfx_settings.onEnd =function(event)
{window._wfx_settings.onEvent('/flow/live/end',event.flow_id);};
window._wfx_settings.onMiss=function(event)
{window._wfx_settings.onEvent('/flow/live/miss',event.flow_id);};
window._wfx_settings.onClose =function(event)
{window._wfx_settings.onEvent('/flow/live/close',event.flow_id);};
}
ODER Alle Ereignisse an Omniture weiterleitenwindow._wfx_settings.tracker = {track:onEvent(event.event_name,event.flow_id);
};

War dieser Artikel hilfreich?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.