如何在typo3搜索表单中排除字段?

时间:2013-02-11 13:41:19

标签: typo3 typoscript

我有一个typo3的网站,我想添加一个搜索表单(typo3的搜索表单)。我该如何自定义搜索?我想只在页面的bodytext中搜索。我想要排除元标题,关键字等字段。 谢谢!我在网站上发现了这个,但我不知道在哪里修改

$TCA['tx_yourext_table'] = array(
    'ctrl' => array(
        'title' => 'Title of your table',
        'label' => 'title',
        'tstamp' => 'tstamp',
        'crdate' => 'crdate',
         // etc...
        'searchFields' => 'title, other_field, yet_other_field',
    ),
);

1 个答案:

答案 0 :(得分:0)

使用以下方法在模板设置中尝试:

tt_content.search.20.allowedCols = tt_content.bodytext
tt_content.search.30.dataArray.value = tt_content.bodytext

在我的例子中,20是SEARCHRESULT对象,30是FORM对象;必要时修改它们。

默认值是这样的,仅供参考:

pages.title-subtitle-keywords-description : tt_content.header-bodytext-imagecaption