MightyA
MightyA

Reputation: 26

How do I exchange the default RTE CK Editor preset of TYPO3 with the full preset of the RTE CK editor?

How do I exchange the default RTE CK Editor preset of TYPO3 with the full preset of the RTE CK editor? I don't have a file called page.ts or sth. like this.

Upvotes: 0

Views: 492

Answers (1)

Julian Hofmann
Julian Hofmann

Reputation: 2557

A configuration with all function can be found in typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml.

So, you have only to load this as default for RTE fields.

Rich Text Editing in TYPO3 with CKEditor (rte_ckeditor) - Configuration Presets shows the following example to be put in LocalConfiguration.php, AdditionalConfiguration.php or within ext_localconf.php of an extension:

$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:rte_ckeditor/Configuration/RTE/Default.yaml';

Upvotes: 1

Related Questions