10:12:47 <Guest|16592> in typo3 you can add a headline (like h1 or h2) --> see the picture... i need the text, that i put in this headline and show it in fluid... so as example: i have create a teaser content element, now the user can put a headline, but i need the same text in the headline for a link, how i can read out the text in the headline
12:19:00 <randomresult> when required="1/true" in a flux:inputfield (for links) and saving an object whitin a section whcih is empty... there should be an yellow !
12:44:49 <bjo3rn> if so, there's nothing to do about it I guess
14:05:25 <hhoechtl> Hi @all, any idea how to get vhs content renderviewhelper to work with fluidcontent_core? My output is unstyled, probably because $GLOBALS['TSFE']->cObj->RECORDS($conf) doesn't use fluidcontent_core for rendering?
14:17:55 <hhoechtl> Or: how do I render CEs from a give pid using fluidcontent_core?
14:21:03 <NamelessCoder> hhoechtl v:content.render renders any content type. cObj->RECORDS passes to cObj->TEXT, cObj->IMAGES etc. depending on CType. FCC then defines these content types as rendered by the FCC controller.
14:25:00 <hhoechtl> @NamelessCoder any idea where to start debugging if v:content.render outputs unstyled content?
14:25:19 <NamelessCoder> what do you mean by "unstyled"?
14:25:52 <hhoechtl> The content of the text element is returned as string. But it's a richtext field
14:26:09 <hhoechtl> The page itself shows this CE properly styled
14:27:07 <NamelessCoder> how exactly are you using the ViewHelper?
14:28:16 <hhoechtl> I have an extbase extension with a show action. The template is assigned a variable pageId and I try rendering the content of this page by using <v:content.render column="0" pageUid="{pageId}" />
14:28:37 <hhoechtl> And this output is just text without markup
14:29:34 <NamelessCoder> you've included the static TS and the AdditionalConfiguration.php file exists and contains the FCC TS name?
14:31:42 <NamelessCoder> and how are you rendering your plugin?
14:31:55 <NamelessCoder> (your problem points to missing lib.parseFunc_RTE from TS)
14:33:58 <NamelessCoder> your rendering will use the TS that is available on the page where your *plugin* resides, not the page of the content. This means that for example, moving the plugin to a page outside your root page or linking across domains can have unexpected results.
14:34:02 <hhoechtl> my plugin is inside a regular fluidpage in colPos=0 just as any other CE
14:34:40 <hhoechtl> They are booth in the same rootline
14:34:58 <hhoechtl> And both pages are rendered properly by fluidcontent_core
14:40:41 <hhoechtl> I don't know why, but deleting typo3temp solved it.