Hello everybody,
I have a page that has three childNodes, but only two are shown in the structure tree although all nodes are created / in the database.
The NodeType definitions are as followed:
'Site.Package:Home.Page':
superTypes:
'Site.Package:Mixin.Page': true
ui:
label: i18n
icon: icon-home
position: 1
childNodes:
headerimage:
type: 'Site.Package:Atom.Teaserimage'
position: 'start'
'Site.Package:Mixin.Page':
abstract: true
superTypes:
'Other.Package:AbstractPage': true
childNodes:
title:
type: 'Other.Package:Atom.PlainTitle'
position: 'before main'
'Other.Package:AbstractPage':
abstract: true
superTypes:
'Neos.Neos:Document': true
childNodes:
main:
type: 'Neos.Neos:ContentCollection'
Each node type definition is in a separate file, but only the childnodes main
and title
are shown (i left some parts away which i think are not required here).
I’ve already run the following flow commands:
- flow node:repair
- flow flow:cache:flush --force
If anybody has an idea, what could cause this problem/error, please give me some advise.