How can I remove "files" from my blueprint fields?

I have a following blueprint code but besides my custom fields, there is also a files field on the right hand.
How can I remove it?

title: Event
preset: page
pages: false
icon: 📅
num: "{{ page.from.toDate('Ymd') }}"

fields:
  from:
    label: Start
    type: date
    width: 1/2
    default: today
  to:
    label: End
    type: date
    width: 1/2
    default: today + 1day
  location:
    label: Location
    type: text
    width: 1/2
  link:
    label: Link
    type: url
    width: 1/2
  text:
    label: Description
    type: textarea

Just solved it by removing the preset: page
But is there a way to manually remove a default field?

When using the preset, you mean? There are no default fields

You probably mean the files section (not field). You can set this to false like you did with the pages option when using the preset.

1 Like