Marcus Gesing
Marcus Gesing
Probably a Swashbuckle issue. Try following: ``` // mvcBuilder of type IMvcBuilder. mvcBuilder.Services.AddSwaggerGen(o => { // Provide unique operation ID. o.CustomOperationIds(x => string.Join("/", x.HttpMethod.ToLower(), x.RelativePath)); } ```
CORS support for the API will come with the next version 5.2.0. See [changelog](https://github.com/smartstore/Smartstore/blob/main/changelog.md). It is not included in the current version 5.1.0.
See `CustomerSettings.HideDownloadableProductsTab` and `CustomerSettings.HideBackInStockSubscriptionsTab`. The order list cannot be hidden by setting. To do this, you must write an event handler for the `MenuBuiltEvent` event and remove it using `TreeNodeBase.Remove`.
Did you mean customer settings? I wouldn't do that for an online store. We also have to think about reducing and the sense of so many settings. You can use...
Workaround: open [checkout page directly](https://ticketstore.smartstore.com/checkout/billingaddress) after login. The shop allows a checkout as guest. It has currently version 5.0.4 and the bug has probably been fixed in the meantime.
There is a link to the affiliate on the order edit page if the order is assigned to an affiliate.
Can you please check my last commit to see if it works in your Web API scenario? I have only checked it with a hard-coded test version of `UrlService.ValidateSlugAsync`.
Chasing and avoiding index uniqueness violations in a multithreaded application always and everywhere sounds like a battle against windmills to me. The option of intentionally running into these errors and...
Is this for guests or registered customers?