It seems our MNTP FieldProvider doesn't work with the pro version. It used to work while using the trial.
The FieldProvider is triggered, but whatever it returns from the Parse method is discarded. I guess AdvancedMNTPSettingsProvider overwrites the result?
I've tried adding both a high and low priority to no avail:
[FieldProvider(PropertyEditorAlias = "Umbraco.MultiNodeTreePicker", Priority = int.MaxValue)]
public class MultiNodeTreePickerFieldProvider : IFieldProvider
{
public object? Parse(object value, IContentBase importedItem, ImportPropertyInfo property, FieldProviderOptions fieldProviderOptions)
{
...
}
}
MNTP FieldProvider with PRO version
It seems our MNTP FieldProvider doesn't work with the pro version. It used to work while using the trial.
The FieldProvider is triggered, but whatever it returns from the Parse method is discarded. I guess AdvancedMNTPSettingsProvider overwrites the result?
I've tried adding both a high and low priority to no avail:
We're using Umbraco 11.
Hi,
On the Fieldprovideroptions you can set break to true, Then it should ignore my providers later on.
Best,
Richard
Hi,
That did the trick, thank you!
is working on a reply...