1

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

$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',
    ),
);
4

1 回答 1

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
于 2013-02-11T15:14:43.820 回答