How to use Date-based Sorting via Panel

Hi,

In the guide https://getkirby.com/docs/guide/content/publishing-workflow there is mentioned, that it is possible to sort pages (and the page folders) by date string (20180529_blablabla). This is the way, I used it with kirby 2. Now, after switching to kirby 3, I do not see a way how to create a new page by the panel and store it in the mentioned method. Every time, I create a new page, all existing folders are renamed to “numer_blablabla”. DO I miss any thing?

You have to set the sorting scheme using num in the children’s blueprint.

Thanks for this tipp. It works in my case with

num: ‘{{ page.date.toDate(“Ymd”) }}’

well done!