Lina Staudt
Lina Staudt

Reputation: 1

Why is the indexed_search extension not showing up?

I'm fairly new to TYPO3 and have tried to install the indexed search extension. I'm following these instructions.

So far I've done:

  1. Installed the package via composer composer req typo3/cms-indexed-search

  2. Created a page called Search

  3. Included the TYPOSCRIPT in the constants.typoscript + setup.typoscript respectively

<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/constants.typoscript">
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/setup.typoscript">
  1. Added the General Plugin Type to the page

Unfortunately it doesn't show me the indexed Search in the General Plugin or anywhere else. What am I doing wrong? Am I missing anything?

Thanks a lot in advance!

Upvotes: -2

Views: 135

Answers (1)

Lina Staudt
Lina Staudt

Reputation: 1

There was one more thing needed: Adding it to the Page.tsconfig. I added the extension + pluginname to the list_type and now it shows up under General Plugin + in the frontend.

columns {
 1 {
     name = Content
     colPos = 11
     allowed {
               CType = list
               list_type = indexedsearch_pi2
             }
    }
}

Upvotes: 0

Related Questions