Search code examples
neoscms

How can i disable the default NodeTypes in TYPO3 Neos?


How can i disable the default NodeTypes without deleting the package TYPO3.Neos.NodeTypes?

If i delete this package i also have to delete the package TYPO3.Neos.Kickstarter because it depends on the NodeType package.

I tried set autoinclude to false in the TYPO3.Neos.NodeTypes Settings.yaml but it doesn't work.

TYPO3:
  Neos:
    typoScript:
      autoInclude:
        'TYPO3.Neos.NodeTypes': False

Solution

  • It's possible to mark node types as abstract, then they won't show up in the user interface.

    NodeTypes.yaml:

    'TYPO3.Neos.NodeTypes:Headline':
      abstract: TRUE
    

    alternatively:

    'TYPO3.Neos.NodeTypes:Headline':
      ui: ~