Hide main page editor?

Hi,

what’s the best way to hide the main page editor?
As I am using custom fields this one is obsolete…

Thx!!

15%20PM|690x217

Hi @slarcher, you could use the unset feature for blueprints to hide a field, more info here:
https://learn.getgrav.org/forms/blueprints/advanced-features#removing-fields-properties-unset

To hide the content area on a page you would create a custom blueprint for that page type, and then have something like this:

title: Custom Page
'@extends':
type: blog
context: blueprints://pages

form:
  fields:
    tabs:
      type: tabs

  fields:
    content:
      fields:
        content:
          unset@: true

Let me know how things go.