Convert-Lucky Orange Integration
Whether you are improving your clients websites’ or working to close your next deal, keying in on insights to improve conversions is powerful. Through the integration of Lucky Orange and Convert, your A/B visitors will be automatically synced to Lucky Orange’s dynamic heatmaps, session recordings and chat logs. This gives you unmatched insight for each of your customers and prospects which is easily accessible in your Convert report dashboards.
For each experiment, the integration uses custom events to 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 Lucky Orange code are installed on your page. Once you have added the codes to your website, you will be able to use the Lucky Orange account to start replaying user sessions and gain insights.
Activate Convert-Lucky Orange Integration
Add the code below to your website right after the Convert + Lucky Orange tracking codes which will send Convert Experience and Variation names to Lucky Orange Dashboard. We are using custom tags:
<script>
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._loq = window._loq || []; // ensure queue available
window._loq.push(["VariationID", curVariant]); // this will tag, won't star, and will append the tag
</script>
View Convert Data in Lucky Orange Recordings
Using a custom tag in Lucky Orange, you will be able to view all of your Convert Experiences data as they associate to the values that you pass in the tag. You can find custom tags under Recordings section.
Comments