0
votes

How can I rename the two backend labels 'author' and 'author_email' which you can find in the Tab 'Metadata' in edit page properties.

I tried to use the following snippets first in the template configuration and second in the Resources Tab at Page TSConfig in the page properties, emptied all caches but nothing happened:

TCEFORM {
tt_content {
    author.label = Teaser
}

}

see: How to rename subheader in TYPO3 CMS backend

and this one:

TCEFORM.author.label.default = Teaser
TCEFORM.author_email.label.default = Sub_Teaser

I tried to read those fields by:

lib.teaser.20 = TEXT
lib.teaser.20.data = levelfield : -1 , author, slide

Please can somebody help?

1

1 Answers

1
votes

Fields author and author_email is attributes of table "pages", NOT "tt_content". Please try this: TCEFORM { pages { author.label = Teaser } }