Hide panel template

Hello! Is it possible to hide certain templates in the dropdown when adding a page? I have programmed some new templates and I just want my clients to choose from some templates, not all. Thanks !

Yes, have a look at subpage settings http://getkirby.com/docs/panel/blueprints/subpages-settings

In the parent template, set the allowed templates like this:

…
pages:
  template:
    - project
    - article
    - contact
…

For first level pages, you need to set this in the site.php blueprint.

2 Likes

It works. Awesome! thx!