Andy Butland
Andy Butland
Will close this as the efforts here have been overtaken by plans for a separate package to provide the functionality that was started on in this PR. There'll be some...
Yes, I'm expecting so. The related PRs have been merged into the 12 branch, and are labelled for a release in 12.4. https://github.com/umbraco/Umbraco-CMS/pull/15593 https://github.com/umbraco/Umbraco-CMS/pull/15625
I've checked in with the CMS team, and It's not scheduled yet @Abrissirba - my expectation would be that if something critical comes up it would get pulled forward, but...
I'll have a look into this Andrew. Meantime, could you share the code of your `CategoriesGetter` so I can see how you've implemented it please?
I'm pretty sure you should be passing along the `culture` parameter, yes. So: `var categoryIpcs = content.Value(alias, culture, fallback: fallback);`. Otherwise I believe what will be happening is that you...
Hi Andrew I've set up a simple example of the fallbacks, and think it working. Though I did note that both the node for the page AND the nodes for...
I've realised there's an improvement I could make to my example above, which avoids having the make the page and it's picker property varying by culture, which it so map...
Are you able to use [this configuration feature](https://docs.umbraco.com/umbraco-forms/developer/configuration#settingscustomization) to achieve this end? In particular, hiding the "Sender Email" field such that it'll use the site wide configured value.
OK, will have a think about it. Not 100% sure it should be default behaviour as I suppose it could be that people would want to use the feature your...
Something like this: ``` using Umbraco.Cms.Core.Events; using Umbraco.Forms.Core.Models; using Umbraco.Forms.Core.Providers; using Umbraco.Forms.Core.Services.Notifications; namespace Umbraco.Forms.Testsite; public class WorkflowSavingNotificationHandler : INotificationHandler { private readonly WorkflowCollection _workflowCollection; public WorkflowSavingNotificationHandler(WorkflowCollection workflowCollection) => _workflowCollection =...