How to Use subheader/subtitle in TYPO3 Content Elements -
How can I use the sub-heading or subtitle field in the content-element in the backend of TYPO3?
In TYPO3 you offer to use an area called shadehead in your backend. To force TYPO3 to show this field, set the following code line within php-tags in your extention »ext_tables.php.
Keep in mind that you flush backend cache and then open the content element.
t3lib_extMgm :: addToAllTCAtypes ('tt_content', 'subheader', '', 'after: header'); After : The header tells TCA to show it in the backend -> content element.
Comments
Post a Comment