Bug #97993
closedRTE.default.preset not applied on bodytext field of custom content elements
0%
Description
RTE.default.preset = foo_default
While Upgrading from TYPO3 9 to 11 we noticed, that the custom RTE configuration is no longer applied to our custom content elements. The default textmedia element uses the custom RTE configuration as expected.
All described content elements use the same tt_content.bodytext
field. The custom content elements are loading the default ext:rte_ckeditor config ($GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:rte_ckeditor/Configuration/RTE/Default.yaml';
).
Adding RTE.config.tt_content.bodytext.preset = foo_default
applies the custom RTE config for the custom content elements. But til TYPO3 10 it was enough to define only the RTE.default.preset.
We followed the docs to create the RTE configuration. And the config itself is not the problem.