As from EPiServer 9.4 you can make use of the notification api. It’s mainly used within the projects feature as far as I can tell, but I found another use for it. NOTE: It's still in beta. Imagine you have a scheduled job e.g. It does some important processing, e.g. sending order information to SAP … Continue reading Using the new EPiServernotification API
Tag: EPiServer
So you want to update your EPiServer Commerce site, but you don’t want to lose orders. That’s still not really possible, a little downtime is still needed, or I missed something. So I did a little POC. I created a “messaging” service. You can send a cart to it. The cart will be put into … Continue reading POC: Upgrade EPiCommerce without losing orders?
I'm looking forward to the Profile Store in EPiServer, but in the mean time I want some information to be remembered. You can, of course, create your own persistent visitor groups, but who knows what will change when the Profile Store arrives. I just wanted the Visited Pages to be remembered, and perhaps the Visited … Continue reading Remember me, (re)store visited pages and categories
I needed to be able to manage favicons from within EPiServer. There are a lot of icons, a configuration json, xml for devices. You could of course create the all online, add them to your website, etc .... But to do that every time ..... Inspired by the great work of Rehan Saeed I created … Continue reading Manage FavIcons in EPiServer
Those of you who know me a bit better know that I hate doing the same thing over and over again. When you do a TypedSearch in EPiServer Find you will have to add your facets to the query. If you have multiple types you might end up with a switch, separate queries for different … Continue reading A generic TermsFacetFor solution
Unfortunately you cannot extend the CatalogNode in EPiServer Commerce and when browsing to it, you get a 404 page. Hopefully this will be possible in a future version. In the meantime you can use this to display your catalog node: In your view you can render a partial view, some static html, etc. You could … Continue reading Quick tip: display a view for the catalog node in EPiServer Commerce
As security is getting more and more important these days, as if it wasn't before... you probably add some response headers to add some extra security. Problem is, I find, that if you set them to strict or to easy, you will need a new deploy, if you manage them in your web.config. There is … Continue reading Manage your security headers in EPiServer
Not really a big post, but I got some requests to update the provider for a newer version EPiServer. So version "2" is compatible with 7.7.1 and above. I also added on request an option for automatic translations through an external provider. I chose Bing, as it has quite enough free translations a month to … Continue reading A custom localization provider for EPiServer 7, revisited
In my last post I wrote about a way to schedule emails, instead of sending them immediately. This was for WebForms though. Getting this to work in MVC was not that easy. I am not sure if there are some bugs in EPiServer, or that I am missing something somewhere, but this is what it … Continue reading Schedule XForm data mailings in MVC
Our client did not want an email very single time a customer filled in a form, but instead wanted a scheduled mailing with all entries. As I could not find a way to add additional options to the ChannelOptions I decided to overrule the functionality of the "Email" option. If we take Alloy (WebForms version) … Continue reading Schedule XForm data mailings