新闻扩展中的自定义排序

时间:2016-03-31 21:34:18

标签: sorting typo3 typo3-6.2.x tx-news

根据documentation,可以使用以下方式扩展TYPO3中新闻扩展程序的排序选项:

$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['orderByNews']

我在ext_tables.php文件中这样做了:

$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['orderByNews'] .= ',div_startdate';

现在我可以在选择器中看到新选项,但选择它不会按显示项目的顺序执行任何操作。

我还应该做些什么才能让这种排序工作?

2 个答案:

答案 0 :(得分:2)

在TYPO3 Slack Channel询问并进行一些研究我发现需要在模板的 Setup 部分包含以下TypoScript代码行,以允许按新字段排序:

plugin.tx_news.settings.orderByAllowed := addToList(div_startdate)

答案 1 :(得分:0)

@webMan

自定义标签转到:your_ext /资源/私人/语言/覆盖/新闻/新闻/locallang_be.xlf

<trans-unit id="flexforms_general.orderBy.div_startdate" xml:space="preserve">
    <source>Custom Startdate Label</source>
</trans-unit>