Is it possible to prevent editing of the site title via the panel?
Something like this (in site.yml
):
title: Site
disabled: true
Is it possible to prevent editing of the site title via the panel?
Something like this (in site.yml
):
title: Site
disabled: true
In the site.yml
blueprint options, you can set the changeTitle()
property to false
:
title: Site
options:
changeTitle: false
https://getkirby.com/docs/reference/panel/blueprints/site#options
That’s it! Thank you @texnixe.