Category: Optimizely
-
Optimizely and Hubspot integration use cases

Today, Gautam Bawa, one of our customer success managers asked, “What integrations does Optimizely have with Hubspot?” Well, it depends on whether we are talking about a CMS, a CRM, or a CDP! There’s quite a few use cases, so I’ve decided to compile a list that customers can unlock by integrating Optimizely and Hubspot.…
-
Does Optimizely CMS come with a native app development framework?

One of our customer success managers, Gautam Bawa, asked me this question today, and so I’d like to create quick blogpost on this for everyone else asking. Short answer: Not out of the box, but you can leverage open-source mobile app frameworks, thanks to our new GraphQL offering. See below to find out more. Long…
-
Inconsistent cart behaviour in a load-balanced website

Problem One of the websites we’re looking after is an e-Commerce website running on 5 web servers, load balanced in AWS with sticky sessions enabled, with the architecture shown above (simplified): There’s several issues with running sticky sessions in an e-Commerce website. One of them is the inevitable customer losing his/her session when one web…
-
How to exclude shortcuts / redirects from the search results in Episerver

Have you set up shortcuts / redirects for some of your pages in Episerver that you are now seeing duplicate results in your site search? One is the correct page and the other is the shortcut page? There are several approaches to exclude shortcuts / redirects from your search results: I took the first approach…
-
How to move an Episerver category under another
Ever needed to move an Episerver Category under another? I could not find a way to do this in the UI so I had to it the old-fashioned way of jumping straight to the database. Warning: You’re not supposed to change data against CMS databases directly as you can easily break sh*t. If you’re in…
-
How to make the most of Episerver Find
I’ve recently encountered a few clients who have been using Find for quite a few years now and while the search and filters are working, they are not using much of its optimisation functions. So I’ve decided to write this post to go through out-of-the-box (OOTB) optimisation features of Epi Find, and show sample implementations…
-
My Episerver Ascend 2019 Notes
The original post was published in the Niteco website but I’ve decided to also add it here in my own blog. This is a 5-min read, which hopefully helps those who have missed the conference. CMS Updates There have been several updates made to the CMS lately, and here’s my favorite: enhancements to block editing…
-
How to localise your 404 custom error page in Episerver
I feel like there is a better / easier way of doing this but I couldn’t find a resource online that works (and there isn’t much I could find at the time of writing). So I’m sharing this post as an option that works, incase you haven’t found a better solution. For those who have…
-
A simple editable robots.txt in Episerver
This post will show you how you can easily author a robots.txt content for your Episerver site. Step 1: Add a CMS property “Robots.txt” In my case, I added this property to my StartPage [Display( Name = “Robots.txt”, GroupName = Groups.MetaData, Order = 835)] [UIHint(UIHint.Textarea)] public virtual string RobotsTxt { get; set; } Step 2: Create…
-
Episerver Forms – Cannot set property ‘$workingForm’ of undefined
This took me a little while to figure out and there isn’t any helpful resource online at the time of writing (according to Google anyway) regarding this error so I think this deserves a blog post… Problem I am on Episerver.Forms 4.18.0 and I’ve been getting this error on my browser console intermittently. Sometimes it…