TYPO3 - 如何在tx_news中显示标签搜索到我的Fluidtemplate?

时间:2016-02-18 15:51:48

标签: tags typo3 fluid tx-news

我正在使用TYPO3 7.6.3加上来自Georg Ringer news 4.1.0的新闻推广。

我需要tx_news中的标记搜索作为选择框,因此我将插件包含在内,并将模板/EXT:myext/Resources/Private/Extensions/News/Templates/Tag/List.html从ul / li-List更改为选择框。这部分工作正常!

但我需要这个选择框不作为内容元素,我需要在我使用TypoScript制作的Footer-Navigation中。如何将tx_news-Template(Tag / List.html)用于我的页脚 - 部分?

这是屏幕:

tag search news typo3 at template

我的标签列表版本..作为搜索框 enter image description here

1 个答案:

答案 0 :(得分:0)

我是这样试过的..

...
    20 = CONTENT
    20 {
        table = tx_news_domain_model_tag
        select {
            selectFields = tx_news_domain_model_tag.title
            orderBy = tx_news_domain_model_tag.title asc
            ### pid folder 'tags'
            pidInList = 32
        }
        renderObj = COA
        renderObj {
            10 = TEXT
            10.field = uid
            10.wrap = <option value="|">
            10.wrap.insertData = 1

            20 = TEXT
            20.field = title
            20.wrap = |</option>
            20.wrap.insertData = 1
        }
    }

    20.wrap = <form method="get" action="/index.php"><input type="hidden" name="id" value="17" /><select name="tx_news_pi1[overwriteDemand][tags]"><option value="" selected>Tag Suche</option>|</select></form>
...

它有效(感谢科林!)! 同样有用:https://www.auxnet.de/typo3-datenbankabfragen-mit-typoscript/