为什么indexed_search扩展没有显示?

问题描述 投票:0回答:1

我对 TYPO3 相当陌生,并尝试安装索引搜索扩展。我正在遵循这些说明。

到目前为止我已经完成了:

  1. 通过composer安装包

    composer req typo3/cms-indexed-search

  2. 创建了一个名为“搜索”的页面

  3. 分别在constants.typoscript + setup.typoscript中包含TYPOSSCRIPT

<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/constants.typoscript">
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/setup.typoscript">
  1. 页面添加通用插件类型

不幸的是,它没有向我显示通用插件或其他任何地方的索引搜索。我究竟做错了什么?我错过了什么吗?

提前非常感谢!

composer-php typo3 typo3-extensions tx-indexed-search
1个回答
0
投票

还需要做一件事:将其添加到 Page.tsconfig 中。 我将扩展名 + 插件名称添加到 list_type 中,现在它显示在前端的常规插件 + 下。

columns {
 1 {
     name = Content
     colPos = 11
     allowed {
               CType = list
               list_type = indexedsearch_pi2
             }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.