Unfortunately, you posted screenshots instead of code, so cannot copy paste here. In future, please always post proper code blocks.
What is this subpages section supposed to be doing in that site.yml, is is weirdly indented under the pages section. Plus, even if It sat correctly, it would be just a copy of the pages section and show exactly the same pages.
In general, moving pages requires that the “receiving” page (pathologies) allows to have pages with the given template. Since I don’t know what the blueprint for that page contains, cannot say more.
Ok, if I understand this correctly, the receiving page only accepts pages that use the default blueprint (there is only one section in default.yml). From the above it is not clear which template the page you want to move uses, also default or full-width?
To give you an example using the Starterkit.
Say you want to move one of the notes children which use the note template to the photography parent, you would have to make the album section blueprint to accept also the note template. It currently looks like this:
/site/blueprints/sections/albums.yml
type: pages
label: Photography
parent: kirby.page("photography")
size: small
info: "{{ page.images.count }} image(s)"
layout: cards
templates: album
empty: No albums yet
image:
query: page.cover
cover: true
ratio: 5/4
and you would have to change the template option to
type: pages
label: Photography
parent: kirby.page("photography")
size: small
info: "{{ page.images.count }} image(s)"
layout: cards
templates:
- album
- note
empty: No albums yet
image:
query: page.cover
cover: true
ratio: 5/4
After that change and a page reload, you would be able to move a note to photography
Thanks for bringing me back to the Starterkit As you can read, I’m a total beginner with Kirby and I’m not used to be able to control pretty much everything!! I’ll go back to the doc and read about sections. Thanks again!