https://github.com/garpunkal/Personalisation
Personalisation Engine for Umbraco 8
https://github.com/garpunkal/Personalisation
members personalisation tagging umbraco umbracocms
Last synced: about 1 month ago
JSON representation
Personalisation Engine for Umbraco 8
- Host: GitHub
- URL: https://github.com/garpunkal/Personalisation
- Owner: garpunkal
- License: mit
- Fork: true (carbonsixdigital/Personalisation)
- Created: 2020-04-08T09:18:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:57:04.000Z (over 2 years ago)
- Last Synced: 2024-10-24T00:24:35.398Z (6 months ago)
- Topics: members, personalisation, tagging, umbraco, umbracocms
- Language: JavaScript
- Homepage: https://carbonsix.digital/
- Size: 6.69 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Personalisation
I've developed a tag-based personalisation system for Members. It's simple to use and easy on your database.It works based on tags on pages and content and stores these against members efficently in session. Once the member has finished their journey, it stores them into your Umbraco database.
Upon a repeat visit, the code pulls the member's persona from the database and back into session for efficent access. It then displays personalised content appropriately.
# Nuget
`Install-Package CarbonSixDigital.Personalisation.Core`
There is a new website project in the solution with an example of how to use the nuget package.
- Important, remember to change the global.asax to use the Personalisation.Core.Global to upsert to database on session end.
# Screenshots
## Homepage
This shows examples of how content can be displayed to the member, including personalised navigation, promotions, promotions with backfilled content.

## Page
This screenshot shows how easy it is to add tagging to a page to enable personalisation.
## Content
This screenshot shows how easy it is to add tagging to a content item to enable personalisation.
## Members
This screenshot shows what tags are part of this members persona.
# Getting Started
Personalisation of content is easy with simple base controllers and methods:
*Methods*
```csharp
viewModel.PersonalisedPromotions = Personalise(viewModel.Promotions, true);
viewModel.PersonalisedPromotionsWithoutBackfill = Personalise(viewModel.Promotions);
viewModel.Pages = Personalise(viewModel.MenuItems, true);
```There is also a Global.cs file that sets the persona to the database upon session end.
Please reference the controllers in the web project within the solution for an example of this.
# Umbraco Version
- Umbraco 8.5.3 +# Umbraco Backoffice & Member credentials
- **email**: [email protected]
- **password**: >;#jRwxjg(# License
Licensed under the MIT License