How to rename subheader in TYPO3 CMS backend

喜夏-厌秋 提交于 2019-12-02 04:27:13

问题


How can I rename a TYPO3 CMS backend field for authors? i.e. the mentioned field for content-elements of csc_styled_content?


回答1:


In general, overriding label names can by done with Page TSconfig in the backend. The following example modifies the label of the subheader field.

TCEFORM {
    tt_content {
        subheader.label = My new Label-Name
    }
}

There are two way to configure that adjustment in TYPO3.

  1. Type your configuration changes directly to the page settings » resources » TypoScript Configuration » Page TSConfig (see the screenshot below)

  2. as an alternative you can store that configuration directly in the file system - either in your custom extension (e.g. at typo3conf/ext/my_extension/Configuration/TSconfig/labels.t3s) or with a similar name in the global file storage (e.g. fileadmin/templates/configuration/...)

That's basically it to provide custom labels for any database table in the TYPO3 backend. Find more aspects that can be adjusted in the accordant Page TSconfig documentation.



来源:https://stackoverflow.com/questions/28094786/how-to-rename-subheader-in-typo3-cms-backend

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!