[SOLVED] Hide/Disallow inherited Child Nodes

Hi there,
For Example: I want create a new kind of the Page inheriting from NodeTypes:Page with static content. Can I disable the childNode “main” in the content structure? So that I am using all the rendering from NodeTypes:Page but without a ContentCollection?

something like:

  childNodes:
    teaser: false
    main: false

thanks

I assume a

childNodes:
    main: ~

could work.

Otherwise you could inherit from TYPO3.Neos:Document` which has no childNodes.

1 Like

Works! thanks a lot