Søren Kottal

Results 33 comments of Søren Kottal

If you can give some pointers, I can take a stab at it. Just don't know where to start :)

@elit0451 do we need the version number at all? They are quite annoying, and as @tormnator mentions, cumbersome to work with, as every upgrade changes all model files.

Every time Umbraco upgrades (both minors and patches), all model files changes, but they only change the version number. This is quite annoying, as you then have to decide if...

Hi Stephanie You need to add your PublishedContent as a parameter for the `new CategoryModel()` you have. This should work. ``` public class CategoryController : RenderMvcController { //Basic Product public...

Yes, it would probably require some macro changes in Core too. I suspect it fails, because it needs a node context, which the form doesn't provide. I was going to...

@AndreyKarandashovUKAD which provider did you use? I used azure ad, which I think umbraco id is based on. That might be the problem.

Hi @AaronSadlerUK Heres a custom example: ```cs .AddBackOfficeExternalLogins(extLoginBuilder => { extLoginBuilder.AddBackOfficeLogin( auth => { auth.AddMicrosoftIdentityWebApp(options => { var tenantId = ""; // TODO var clientId = ""; // TODO var...

I somewhat agree, but that is how every "how add values programmatically" is done. https://github.com/search?q=repo%3Aumbraco%2FUmbracoDocs%20programmatically&type=code

Because I can have dynamic start nodes in there, and limit which doctypes can be selected. I made a pull request :) #15

May I add - the [docs](https://docs.umbraco.com/umbraco-commerce/key-concepts/ui-config-files#additional-info-config-options) say you can use `template` and `view` but only `view` gets into the output from `/umbraco/backoffice/umbracocommerce/umbracocommerceorder/GetOrderEditorConfig` ![image](https://github.com/umbraco/Umbraco.Commerce.Issues/assets/3726467/df88a6c0-d509-48a4-b56e-fba72cc25740) It seems like the UI is prepared...