Programmatically remove fields from content

Hi everyone! Is it possible to let kirby completly get rid of fields in content files? I’m trying to migrate a website from k2 to k3 and of course I want to make use of the new panel possibilities. However therefore I need to rearrange and remove some content fields. I remember that in k2 update a field like $page->update(['ciao' => null]) did the trick but k3 leaves a the property with no value in the content files. Doing it manually is not an option.

Nevermind, I found the solution! I had the field still defined in the blueprint… After removing it there, updating with null worked like expected and left no trace in the content files, perfect! :slight_smile: