18:16:54 <Nurbs> Hi! Is it possible to access fluidpages settings from TS? I would like to render e.g. settings.pageClass in <body class="..."> using page.bodyTagCObject instead of using <div class="{settings.pageClass}">
18:17:23 <Nurbs> With settings.pageClass being defined similar to this example: https://fluidtypo3.org/documentation/templating-manual/templating/creating-templates/page-template.html
18:33:35 <NamelessCoder_> Nurbs I think you can reference values stored in flexform data fields using a special typoscript syntax; check the official typo3 documentation for how to assign a TEXT ts object's value property to contain the value of current record, and then the documentation on syntax for referencing a specific value when the field value you are reading is stored in a flexform.
18:45:31 <Nurbs> I see. This means reading from tx_fed_page_flexform or tx_fed_page_flexform_sub using XPATH, I suppose; somewhat complicated by having to handle inheritance within the page tree. Maybe tomorrow, but thansk :)