Skip to content

Instantly share code, notes, and snippets.

@robisatthefunction
Last active December 10, 2020 19:25
Show Gist options
  • Save robisatthefunction/ebfaec035eca53abd07a3016d7093db6 to your computer and use it in GitHub Desktop.
Save robisatthefunction/ebfaec035eca53abd07a3016d7093db6 to your computer and use it in GitHub Desktop.
// Place this clode below the Optimizely snippet
var first_session = window.optimizely.get('visitor').first_session
if (first_session == true) {
first_session = "true";
} else if (first_session == false) {
first_session = "false";
}
window.optimizely = window.optimizely || [];
window.optimizely.push({
"type": "user",
"attributes": {
"first_session": first_session
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment