Questions tagged [optimizely]

Optimizely provides A/B testing, Multivariate Testing and optimizations for websites and mobile apps via software as a service

Optimizely is a feature management and experimentation platform that provides feature flags, A/B testing, multivariate testing, recommendations, and personalization. It includes a reporting interface that provides results and statistical significance powered by Stats Engine, built in conjunction with Stanford University.

Marketing teams can use Optimizely's visual editor to run A/B tests without having to deploy code. This functionality can be extended by adding custom CSS and JavaScript and building reusable templates called Extensions.

Product teams can use Optimizely's Full Stack solution to run experiments across any application and control feature releases with feature flags using Optimizely's server-side, JavaScript, mobile, and OTT SDKs. Make every feature on your roadmap an opportunity to learn.

Development teams can use Optimizely's free Rollouts solution to put code behind feature flags to easily roll out and roll back features in any application without additional code deploys using the same SDKs as Optimizely FullStack. Mitigate risk for every feature on your roadmap.

Resources

129 questions
3
votes
0 answers

How do I guarantee that everything inside a onsubmit callback will get run before the form is submitted?

I have Optimizely on a page that also has a Google Form on it, and I want to track events when the form is submitted. This is roughly the code I have now: window.optimizely = window.optimizely || []; $('#ss-form').on('submit', function() { …
agentofuser
  • 8,987
  • 11
  • 54
  • 85
2
votes
3 answers

A/B Test solutions for a locked source code environment - server side decides which user gets which variation

I've been previously using tools such as Google Website Optimizer to run multi-variation or A/B tests. However right now I am looking for a solution that works for a larger site (400-500 000 unique visitor per month) with a very locked down source…
Niklas B
  • 1,839
  • 18
  • 36
2
votes
1 answer

DatafileManager: Error fetching datafile: Request error

Problem I'm using Optimizely to code-gate my new website. But the allowed accounts aren't getting through. The first Firefox console error is [OPTIMIZELY] - ERROR DatafileManager: Error fetching datafile: Request error How do I fix…
Super Jade
  • 5,609
  • 7
  • 39
  • 61
2
votes
2 answers

BVN404 gadget showing in local dev, but not EpiServer integration enviornment

I am able to access this gadget in my local dev environment, but not integration, as you can see below: Local dev: Integration: I double checked the BVN settings from here: https://github.com/Geta/404handler#configuration. They are setup like this…
ernest
  • 1,633
  • 2
  • 30
  • 48
2
votes
0 answers

Adding TinyMCE plugin with toolbar icon using a module package in Episerver CMS 12

I have a custom TinyMCE plugin that add a toolbar icon to the tinymce tool bar. Plugin is configured in a file called editor_plugin.js which is placed inside my custom EpiServer module. I need this to register in tinyMCE. I added following code in…
2
votes
1 answer

Register an addon in Episerver CMS 12

Plugin UI are developed in a separate MVC project and CMS 12 is in another projects. Following is a test solution that just to explain the issue we are having. Solution structure Please consider followings The TestAddon project is a Simple MVC…
2
votes
1 answer

Optimizely not getting activated for Java SDK code

I'm trying to use the below code from the Optimizely docs : Map attributes = new HashMap<>(); attributes.put("device", "iPhone"); attributes.put("lifetime", 24738388); attributes.put("is_logged_in", true); Boolean enabled =…
shdu12
  • 103
  • 3
  • 8
2
votes
1 answer

Optimizely not working on production app

There is some issue with editing mode on production app (downloaded from app store). I've implemented all required setting. When I build app from Xcode to my device, then send link from website to myself, clicking this link opens app end enters…
2
votes
1 answer

No traffic in experiment report

I'm testing Optimizely and created an implementation in my reactjs project. The optimizely script is loaded only when required (lazyLoad), so for that reason, when creating a new experiment in the Dashboard I get the "snippet not present in the…
punkbit
  • 7,347
  • 10
  • 55
  • 89
2
votes
2 answers

How to rebind jQuery event handlers after replaceWith, e.g when using Optimizely

Optimizely A/B test service uses .replaceWith("new HTML") extensively to produce easy A/B testing. This has the side effect of removing any event listeners that were listening to events from the replaced elements, even if the new elements would have…
elnygren
  • 5,000
  • 4
  • 20
  • 31
2
votes
0 answers

Defer 3rd party script to the next AngularJS digest

I've got a directive that manipulate DOM, and than a 3rd party script: // manipulate DOM var elButton = angular.element(''); element.append(elButton); // 3rd party-service that is to manipulate elButton…
SRachamim
  • 931
  • 2
  • 8
  • 20
2
votes
1 answer

how to allow cross scripting for a specific site?

I'm trying to test my website with Optimizely (a name of a tool allowing to create A/B tests etc). This tool tries to load my page inside an iframe and I get JS error: blocked a frame with origin "...optimizely..." from accessing a frame with…
benams
  • 4,308
  • 9
  • 32
  • 74
2
votes
1 answer

Need of jQuery in delivering variation in optimizely

I have created an experiment on Optimizely and I want to start the experiment. But before starting, I want to test out things how they look. So I created an experiment and copied code from the text area which they provide via button at the bottom…
Sachin Jain
  • 21,353
  • 33
  • 103
  • 168
1
vote
1 answer

401 Unauthorized when use Content Management API of Episerver

I'm consider to use Content Management API for getting and updating content with Content Guid. I just want to build a simple project following the optimizely official…
Max Manh
  • 11
  • 1
1
vote
1 answer

Optimizely CMS12 in IIS

We've built and deployed many Optimizely sites but recently started exploring CMS 12 running on .net Core. The issue at the moment is that we're not able to view the site when "hosted" by IIS. We've followed the Optimizely instructions, cross…
Jag
  • 723
  • 8
  • 21
1
2
3
8 9