Disable Core Umbraco Field Types
p
How can I disable Core field types in Umbraco Forms? From the docs it does't seem we can do it in the config. I saw [this closed issue](https://github.com/umbraco/Umbraco.Forms.Issues/issues/61) on the tracker - is this still the only way?
m
Its call done in C# now there isnt config files for it
p
Thanks @Matt Wise I'm in v12 currently but it's the same and this is what I've done after reading the issue on the tracker.
In fact what I actually did was:
Copy code
builder.WithCollectionBuilder<FieldCollectionBuilder>().Exclude<Recaptcha2>();
builder.WithCollectionBuilder<FieldCollectionBuilder>().Exclude<Recaptcha3>();
But I imagine your example is just an extension method to achieve the same
m
Yeah it just wraps around those
8 Views