I want to give the user the minimal RTE for some kinds of custom content elements in TYPO3 8.7.
I found this old approach here but it is not compatible with the ckeditor of TYPO3 8.
RTE.config.tt_content.bodytext.types.ccc_teasertext {
showButtons = bold, italic, underline, link, chMode, orderedlist, unorderedlist
RTEHeightOverride = 600
}
RTE.config.tt_content.bodytext.types.ccc_introtext {
showButtons = bold, italic, chMode
RTEHeightOverride = 300
}
How do I use RTE.config with the new ckeditor syntax like this RTE.tt_content.types.textmedia.bodytext.preset = minimal
?
https://stackoverflow.com/a/55391407/4062341
Fellow TYPO3 developer gautamsinh mori pointed me here to a solution for the problem:
Don't configure the RTE in the PageTS but in the TCA Overrides per content element like this:
Note:
'minimal'
is the preset.