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
0
votes
1 answer

How to implement a list of blocks in Optimizely CMS 12

I am trying to implement a list of blocks in Optimizely CMS 12 as per these instructions: List Properties // Creating a contact block type [ContentType(AvailableInEditMode = false, GUID = "38d57768-e09e-4da9-90df-54c73c61b270")] public class…
Emil Lundin
  • 577
  • 5
  • 14
0
votes
1 answer

Running IIS Express from the Command Line .Net Core

In a project im working on, we are upgrading our Episerver CMS website from CMS11 (.net framework) to Optimizely CMS12 (.Net core) for a customer. To run IIS Express using CLI (to not have the need to run the application from VS/Rider) and start NPM…
0
votes
0 answers

Updating Audiences in the Optimizely using the SDK

There is a requirement for updating audiences, we searched a lot, and apparently, there is no such feature in the java SDK. The requirement is that there is a micro-service that notifies us to include a new audience in an already existing feature…
Sia
  • 139
  • 2
  • 10
0
votes
1 answer

EPiServer (Optimizely) SQL: batch update of product expiry date

I am trying to update the product expiry date using SQL. I used these codes: UPDATE [Test.EPiServer.CM11.UAT].[dbo].[CatalogEntry] SET EndDate = '2032-12-31 16:00:00.000' where Code in ('TESTB8', 'TESTB10' ) It changes data on SQL results but…
Zaman
  • 71
  • 2
  • 6
0
votes
0 answers

Optimizely - Updating rollout out rules with additional audience condition in feature returns 400 bad request

I need to modify rollout rules with additional audience condition for features using Optimizely APIs. Trying to call with url [PATCH] api.optimizely.com/v2/features/{feature_id}, returns 400 BAD Request. { "archived": false, "description":…
0
votes
1 answer

Optimizely Episerver CMS - unable to upload SVG icons, "parameter is not valid"

I wish to upload SVG-icons to my blocks / pages in Episerver. However, I get the error "parameter not valid" no matter what type of svg I attempt to upload. PNGs work fine. [MediaDescriptor(ExtensionString = "svg")] public class SvgIcon :…
Maffe
  • 71
  • 1
  • 8
0
votes
1 answer

Form field dependencies lost on export/import in EPiServer

We are using Episerver/Optimizely CMS 11.20.7. When exporting a page containing a form containing form fields with dependencies from our production environment and later import it to our acceptance test environment (or vice versa), the form field…
0
votes
2 answers

Object reference exception when importing content in Episerver

We are using Optimizely/Episerver CMS 11.20. When trying to export a page hierarchy from our production environment and then import the resulting ExportedFile.episerverdata file to our acceptance test environment I get the following…
Andvik
  • 119
  • 1
  • 12
0
votes
1 answer

Customizing Optimizely (Episerver) block outer div css class

Is it possible to add css classes to auto-generated outer div for block element ? I have a simple Block with a ViewModel and a Controller and I need modify this autogenerated outer div, or optionally remove it? I looked at other answers to this…
Jeekim
  • 543
  • 5
  • 15
0
votes
1 answer

Setting Scheme programmatically of website

I have a multisite application with around 40+ Https sites. The scheme column for all the sites is empty. I tried creating a schedule job that will update Scheme to HTTPS looping in all the sites using SiteDefinitionRepository. The problem is…
0
votes
1 answer

Episerver: Execute a Schedule Job within a schedule Job

Is it possible to execute a schedule job within a schedule job .For Instance ,I have a schedule job A that does some operations .There is another schedule job B that executes after Schedule Job A is executed. So rather than manually going and…
Ms1
  • 45
  • 5
0
votes
2 answers

EpiServer - IContentLoader returns different page types when filtering for the start page

I'm trying to get the start pages in Razor code so I can display different navs based on the start page. Here's how I'm doing it: var contentLoader = EPiServer.ServiceLocation.ServiceLocator.Current.GetInstance(); var pages =…
ernest
  • 1,633
  • 2
  • 30
  • 48
0
votes
1 answer

Get Page url on block types

I am working on generating a report in episerver in the form of a scheduled job.This report is basically used to get all the contents(page types,blocks,media) within Episerver. There are some good nuget packages for content usages but for some…
0
votes
1 answer

Episerver: Validating contents from Robot.txt

In my multisite application, I need to include a robot.txt file for each of the site. The implementation for this goes as follows: 1- Included a RobotsContent property of type textarea within the Start page. 2- Added a hander as given below with a…
0
votes
1 answer

ConfigureCmsDefault() not found in IHostBuilder - Optimizely (EPiServer) CMS 12

I had Optimizely (formerly Episerver) CMS version 12.3.1 in a project and I updated it to 12.4.0. Now I'm getting the following error in Program.cs when trying to add the .ConfigureCmsDefault() call. Error CS1061 'IHostBuilder' does not contain a…
1 2 3
8 9