Good morning, can anyone tell me how to hide in the kirby panel: home and error.
You can set visible templates like that:
# site/blueprints/site.yml
sections:
pages:
type: pages
templates:
- about
- default
Thanks for the help.
I have one more question, is it possible to block adding more pages?
Iād like to only have the blog and gallery fields on the home page of the panel so I can navigate to them but not add them next to their other pages
Sure with create: false
# site/blueprints/site.yml
sections:
pages:
type: pages
create: false
templates:
- about
- default
1 Like
Wow thank you very much!