This Article Will Help You:
- Convert-Woopra Integration
- Add Tracking Code Snippets
- Activate Integration in Convert
- Activate Integration Manually
- View Convert Data in Woopra
Convert-Woopra Integration
Woopra is a customer analytics platform that collects real-time web analytics and builds a comprehensive profile for your visitors. This article will walk you through how to push Convert properties and events to Woopra.
For each experiment, the integration will pass along the experiment name and variation name that the visitor is currently bucketed into (if any).
Add Tracking Code Snippets
Make sure the Convert tracking code and the Woopra javascript code are installed on your page. Woopra tracking code looks like this:
Activate Integration in Convert
Go to your Convert experience settings and under Integrations select the Woopra. Then click Save and Continue.
Activate Integration Manually
If you do not want to activate the integration through Convert, you can add this extra code to your website to track custom events:
var refObject = window['convert']['data']['experiments']
for (var key in window["convert"]["currentData"]["experiments"]) {
if (!window["convert"]["currentData"]["experiments"].hasOwnProperty(key)) {
continue;
}}
var currentExperiment = window["convert"]["currentData"]["experiments"][key];
var curExperimentName = refObject[key] && refObject[key].n ? refObject[key].n : "unknown experiment name";
curExperimentName = curExperimentName.replace("Test #", "Test ");
var curVariant = currentExperiment['variation_name'] ? currentExperiment['variation_name'] : "unknown variant";
curVariant = curVariant.replace("Var #", "Variation ");
woopra.track("convert", {
Exp_Name: curExperimentName,
Var_Name: curVariant
});
View Convert Data in Woopra
You will be able to view all of your Convert Experiences data as they associate to the values that you pass in these properties and events.
Once logged in, go to Dashboard or People and search for the custom event you created: