A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
appSettings in Web.config In the ASP.NET world (.NET Framework, not Core), the most common place for settings is the appSettings section in the Web.config file. You can configure solution-wide settings here. It is possible to add transformations f...
IOrderForm has a property with all promotions applied to the order. Each promotion record provides information about the saved monetary amount, about the type of the reward, has a reference to the promotion data and more information. But it lacks...
In Episerver you can hide properties in edit mode using a ScaffoldColumn attribute by using it like this: [ScaffoldColumn(false)] This does not work for the Category property though. To fix it, you can add an editor descriptor similar to Joel's bu...
The issue We have item level discounts on two categories where one category has a 30% discount and the second one has a 50% discount. Then we defined an order level discount of 40% when a coupon code is applied. The order of discounts is 50% -> 40...
While Episerver's async methods for starting a scheduled job do not work well, there is a workaround. You can schedule the job to run later. Then the scheduler will pick up the job and start it. Here I have created an extension method to schedule...