Page Status options

Is there any way to customize the options in the page status dialog? The Unlisted option is confusing my client and is something they will never use for this page. Is there any way to just remove that option while still giving them the option to set the status to draft or public?

Yes, that is possible via the status option.

status:
  draft: Draft
  listed: Published

As you can see, you can also customize what these options are called, and also their descriptions.

2 Likes

Thank you very much @texnixe!

And if you want to use the default label and text and keep translations, just use:

status:
  draft:
    label: page.status.draft
    text: page.status.draft.description
  listed:
    label: page.status.listed
    text: page.status.listed.description
1 Like