SaaS CMS has officially launched! Learn more now.

makj
Jan 8, 2019
  3661
(2 votes)

Episerver Advance content recommendations block

As you probably have heard we launched Episerver Advance earlier this year. Advance is the latest addition to our personalization suite and is a service for content personalization and enables you to recommend content to your visitors at any given time that vary based on their experience and needs.

How it works

The process can be described with the following steps:

  1. Track – every interaction with your site is tracked back to Episerver Advance.
  2. Create – your editors create content, preferably lots of it and diverse.
  3. Analyze – the machine learning algorithms analyze tracking behavior and content.
  4. Visualize – the service sends recommendations back to the user based on the analysis.

Getting started

As an example and help you get stared with Episerver Advance we have created a block available on Github, https://github.com/episerver/ContentRecommendationBlock. The block shows a number of recommended pages set by the editor to the visitor. No styling has been added to the block but what that’s not a priority here.

I have set the content recommendations block up on a clean Alloy site. The first thing that needs to be done is getting an Advance account. When ordering Advance, you will get configs for both tracking and getting recommendations that need to add to your web.config.

The next step is to install nuget-packages. The packages needed are EPiServer.Tracking.PageView and Episerver.Personalization.CMS. EPiServer.Tracking.PageView is for tracking and Episerver.Personalization.CMS is the one used for getting the recommendations. The packages need the configs for your Advance account and can now be set.

EPiServer.Tracking.PageView:

<add key="episerver:profiles.TrackingApiBaseUrl" value="ChangeThis" />
<add key="episerver:profiles.TrackingApiSubscriptionKey" value="ChangeThis" />
<add key="episerver:profiles.ProfileStoreTrackingEnabled" value="false" />

Episerver.Personalization.CMS:

<add key="episerver:RecommendationServiceKey" value="ChangeThis" />
<add key="episerver:RecommendationServiceSecret" value="ChangeThis" />
<add key="episerver:RecommendationServiceUri" value="ChangeThis" />

The tracking needed for Advance is, as you might have figured from the name of the package, pageviews. Using the package, we add [PageViewTracking] to the page controller methods we want to track, as below. Add tracking to all as many of your pages as possible, the more the better.

public class DefaultPageController : PageControllerBase<SitePageData>
    {
        [PageViewTracking]
        public ViewResult Index(SitePageData currentPage)
        {
		...
        }    

Next, I just added the project to my alloy site. The content recommendation block is using an API-call to get the recommendations, so I needed to add the following to the route config:

System.Web.Http.GlobalConfiguration.Configure(config =>
         {
	    config.MapHttpAttributeRoutes();
	    config.Routes.MapHttpRoute(name: “DefaultApi”, routeTemplate: “api/{controller}/{action}”, defaults: new { id = RouteParameter.Optional });
         });

That’s it! When creating the block on the site there is only one property available for the editor.

And then on the site the block containing the links.

Jan 08, 2019

Comments

Janne Kuusela Kuusela
Janne Kuusela Kuusela Nov 14, 2019 08:21 AM

It is great that I can install some ready-made package and get recommendations. However it would be really interesting to understand a bit more the added value of this, for example by getting answer to the following:

  • What is the logic behind the gives you the recommendations?
  • How if anyway can developer or content editor affect the recommendations?
  • Is this any how related to the personalization portal? If we have Advance and personalization portal provisioned for our customer, what should we expect to see on the personalization portal?

Episerver has ramped up a variety of personalization products and services, but most of the really good and well explained examples are related to commerce, where the logics behind recommendations are somewhat more clear and common (popular products, both together with currently browsed product etc.)

I am personally having really hard time to find any solid documentation, examples and explanations for Episerver personalization products for customer that just dont have commerce. Sure there is load of articles about setting up this and that, but still it is really difficult to create solid picture of what to expect from personalization of content, not products.

Please login to comment.
Latest blogs
Optimizely SaaS CMS Concepts and Terminologies

Whether you're a new user of Optimizely CMS or a veteran who have been through the evolution of it, the SaaS CMS is bringing some new concepts and...

Patrick Lam | Jul 15, 2024

How to have a link plugin with extra link id attribute in TinyMce

Introduce Optimizely CMS Editing is using TinyMce for editing rich-text content. We need to use this control a lot in CMS site for kind of WYSWYG...

Binh Nguyen Thi | Jul 13, 2024

Create your first demo site with Optimizely SaaS/Visual Builder

Hello everyone, We are very excited about the launch of our SaaS CMS and the new Visual Builder that comes with it. Since it is the first time you'...

Patrick Lam | Jul 11, 2024

Integrate a CMP workflow step with CMS

As you might know Optimizely has an integration where you can create and edit pages in the CMS directly from the CMP. One of the benefits of this i...

Marcus Hoffmann | Jul 10, 2024

GetNextSegment with empty Remaining causing fuzzes

Optimizely CMS offers you to create partial routers. This concept allows you display content differently depending on the routed content in the URL...

David Drouin-Prince | Jul 8, 2024 | Syndicated blog

Product Listing Page - using Graph

Optimizely Graph makes it possible to query your data in an advanced way, by using GraphQL. Querying data, using facets and search phrases, is very...

Jonas Bergqvist | Jul 5, 2024