实际上我已经在这个网站上找到了答案 Preferred way to add an extensions into Fluid Powered TYPO3 template 但是我没有让它发挥作用: - (
我有一个包含主要内容的页面模板,在FlexSlider扩展的侧边栏内容中,我想要呈现扩展新闻的列表视图。所以我猜克劳斯的答案1a适合:
1a)在sys文件夹中创建元素并从Flux表单设置中引用它,然后使用v:content.render通过UID呈现它。
但是怎么做?如何从我的Flux表格中引用它? 有人有一个示例代码。我找不到教程或文档...
感谢阅读,希望你有答案; - )
尔根
答案 0 :(得分:1)
一种简单的方法是创建一个typoscript元素,然后将其渲染为流体:
lib.rightcolumn = CONTENT
lib.rightcolumn {
table = tt_content
select {
pidInList = 42
where = colPos=1
}
}
<f:cObject typoscriptObjectPath="lib.rightcolumn" />
另一种方法是直接在流体中创建它: https://fluidtypo3.org/viewhelpers/vhs/master/Content/RenderViewHelper.html
答案 1 :(得分:0)
最后我通过修复另一个问题意外得到了它: Fluid Powered TYPO3 FLUX Fluidcontent - No Output in Frontend? 我不得不用
添加文件“typo3conf / AdditionalConfiguration.php”<?php $GLOBALS['TYPO3_CONF_VARS']['FE']['contentRenderingTemplates'] = array('fluidcontentcore/Configuration/TypoScript/');
感谢帮助nBar,我使用“f.cObject”作为解决方法。
现在这是我的页面/模板代码:
<f:section name="Configuration">
<flux:form id="homepage">
<flux:grid>
<flux:grid.row>
<flux:grid.column colPos="0" colspan="2" name="main" label="Main content"/>
<flux:grid.column colPos="1" colspan="1" name="logoslider" label="Logo slider"/>
</flux:grid.row>
<flux:grid.row>
<flux:grid.column colPos="2" colspan="3" name="news" label="News"/>
</flux:grid.row>
</flux:grid>
</flux:form>
</f:section>
<f:section name="Main">
<div class="container">
<div class="row">
<div class="col-md-8">
<v:content.render column="0"/>
</div>
<div class="col-md-4 team_logos">
<div class="infobox">
<v:content.render column="1"/>
</div>
</div>
</div>
<div class="row infobox">
<div class="col-md-12">
<v:content.render column="2"/>
</div>
</div>
</div>
</f:section>