Integrate Convert Experiences with Econda

This Article Will Help You:


Convert-Econda Integration

The integration combines the capability of A/B Testing and Multivariate Testing by Convert Experiences with the complete Econda web analytics suite. This will help users of both products go deeper into their data and make better data-driven decisions. Econda users will be able to see the results of Convert variations in their dashboards, segment this data and run detailed E-Commerce analyses in Econda.

Add Tracking Code Snippets

Make sure the Convert tracking code and the Econda tracking code (emos2.js or emos3.js) are installed on your page.

Activate Integration in Convert

Go to your Convert experience settings and under Integrations select the Econda. Then click Save and Continue. 

Activate Integration Manually

If you do not want to activate the integration through Convert Experiences interface, you can do it manually by adding this code, where you send to emos3, Convert Experiment and Variation IDs:

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 ");

window.emos3.send({
Exp_Name: curExperimentName,
Var_Name: curVariant
});

View Convert Data in Econda

Using emo3.send or emosPropertiesEvent in Econda, you will be able to view all of your Convert Experiences data as they associate to the values that you pass in these properties.