Hallo,
folgendes Problem. Ich möchte das bei tt_news das Feld der Bildunterschriften als RTE dargestellt und ebenfalls im Frontend so formatiert ausgegeben wird. Ergoogelt habe ich mir das hier für die Subheadline:
t3lib_div::loadTCA('tt_news'); $GLOBALS['TCA']['tt_news']['columns']['short']['config']['softref'] = 'typolink_tag,images,email[subst],url'; $GLOBALS['TCA']['tt_news']['columns']['short']['config']['wizards'] = array( '_PADDING' => 4, 'RTE' => array( 'notNewRecords' => 1, 'RTEonly' => 1, 'type' => 'script', 'icon' => 'wizard_rte2.gif', 'script' => 'wizard_rte.php', ), ); foreach($GLOBALS['TCA']['tt_news']['types'] as $index => $conf) { $GLOBALS['TCA']['tt_news']['types'][$index]['showitem'] = preg_replace('/short([.^,])*,/', 'short;;;richtext:rte_transform[flag=rte_enabled|mode=ts];4-4-4,', $GLOBALS['TCA']['tt_news']['types'][$index]['showitem']); }
Leider krieg ich das nicht auf die Kette das so anzupassen, es auf die Bildunterschrift anzuwenden. Kann mir hier irgendjemand helfen.
#angry#