I found a nice TypoScript code snippet to use different Text based on which option choosed in a webform: https://www.typo3.net/forum/thematik/zeige/thema/111899/
lib.salutation = CASE
lib.salutation {
key.field = 0
Herr = TEXT
Herr.value = Sehr geehrter Herr
Herr.noTrimWrap = || |
Frau = TEXT
Frau.value = Sehr geehrte Frau
Frau.noTrimWrap = || |
}
But i need to use an option called "Daten ändern". But this will obiously not work:
Daten ändern = TEXT
Daten ändern.value = Daten ändern bla bla
Daten ändern.noTrimWrap = || |
How can i use "Daten ändern" with the code above?
Thank you!