In this article
This document describes how to integrate Permutive cohorts into the Optimizely platform for the purposes of site-side personalisation.
There are many use cases for passing audiences into Optimizely but the primary one is to tailor content and conduct experimentation testing (A/B, multivariate, etc) in order to drive engagement by understanding what works better for specific audiences. This leads to a range of results including; increased stickiness, increase in conversion rates, improving ad viewability (through an integration with Moat) and eliminating guesswork for key business decisions.
The Integration
By using the following code snippet, Optimizely is able pull in from localStorage and understand which cohort a user falls into.
var kvs = localStorage.getItem('_psegs');
var segments = kvs ? JSON.parse(kvs) : [];
This means the JS code will run before the Optimizely code and add the cohort ids from localStorage to the Optimizely snippet.
Still inside the Optimizely UI, in Audiences, the user will need to target the relevant Permutive cohort id. The audience inside Optimizely is created as below using their drag and drop functionality for custom JS as a 'Standard Condition' from a drop down menu on the right of their interface.
Custom JavaScript Audience conditions allow you to target your 'experiment' for a uniquely defined set of pages or visitors.
The corresponding cohort id will need to be added by a user familiar with the Permutive dashboard in order to see the cohort they wish to target along with the id.
The Permutive user will need to set up the specific (or choose existing) cohorts that they wish to use for the Optimizely audience.
If you have any questions, please contact customer support by emailing support@permutive.com or chat to the Customer Operations Team via the LiveChat icon in the bottom right corner of your screen.
Comments
0 comments
Article is closed for comments.