I created a fresh Neos instance and installed node templates (had to add “minimum-stability”: “dev” to my composer.json and had to remove demo site from composer.json and composer.lock in order to run composer require flowpack/nodetemplates successfully)
I edited my NodeTypes.yaml in /Sites/{site}/Configuration with this:
'Neos.NodeTypes:Page':
options:
template:
childNodes:
mainContentCollection:
name: 'main'
childNodes:
helloWorldTextNode:
type: 'Neos.NodeTypes:Text'
properties:
text: '<p>Hello world!</p>'
but nothing happened, I created a new page and no node were created automatically. The page was created successfully but without the mainContentCollection.
Am I missing something? Please help!
Thank you,
Daniel
UPDATE: solved! Thank you Thomas for your hints. I was under the impression the latest Neos already uses React UI out of the box. After I installed the new UI it worked fine. Thanks again and sorry for asking the question in this topic…