在TYPO3 6.1中,如何让tx_news新闻扩展的tsconfig工作?
我尝试为新闻项添加可选择的布局:
tx_news.templateLayouts {
1 = A custom layout
99 = LLL:fileadmin/somelocallang/locallang.xml:someTranslation
}
这应该将新布局添加到“类型”字段,如:
还是我弄错了?在哪里可以选择新的自定义布局?
另外,我正在尝试在flexforms中预填充字段(插入新插件时):
TCEFORM.tt_content.pi_flexform.tx_news.sDEF.categoryConjunction = and
但它还不起作用。
如何做到这一点?
答案 0 :(得分:2)
使用tx_news.templateLayouts
覆盖您在页面上插入的新闻插件的flexform,而不是新闻记录。
您的第二段代码看起来几乎正确,但您忘记了settings
:TCEFORM.tt_content.pi_flexform.tx_news.sDEF.settings.categoryConjunction = and
即使这段代码是正确的,但由于bug的flexform字段名称中有一个点(这只是愚蠢的),因此无效。 我认为干净地修改flexform的唯一方法是编写一个小的扩展来覆盖默认的新闻flexform。