We are reworking old TYPO3 projects and my problem is that the following condition doesn't work anymore, and nothing gets wrapped:
tt_content.stdWrap.innerWrap.cObject = CASE
tt_content.stdWrap.innerWrap.cObject {
key.field = section_frame
100 = TEXT
100.value = <div id="c{field:uid}" class="hotel">|</div>
}
So, section_frame is deprecated and got replaced by frame_class which would result in:
tt_content.stdWrap.innerWrap.cObject = CASE
tt_content.stdWrap.innerWrap.cObject {
key.field = frame_class
100 = TEXT
100.value = <div id="c{field:uid}" class="hotel">|</div>
}
But that doesn't work either. What else has to be changed to work with TYPO3 9.5 and fluid_styled_content?