Adrian
Adrian

Reputation: 5

TYPO3 Indexed Search Pagination not showing next pages

When I search on my website and try to use the pagination it says "no entrys found" (https://www.zeva.org/werkzeuge/suche search for "test") How can I fix that?

I tried disabling the searchbar on the top right header and already tried to use the javascript via console. Nothing works

I'm using the standard Fluid Template for indexed search

Upvotes: 0

Views: 397

Answers (1)

Chetan Shah
Chetan Shah

Reputation: 29

I have an alternative solution for this issue.

I created userFunc using COA lib object. And attach f:cObject viewhelper where I need search form of index search in Fluid Template.

<f:cObject typoscriptObjectPath="lib.searchbox"/>

Here is code for userFunc in typoscript.

lib.searchbox = COA
lib.searchbox {
    1000 = USER
    1000 {
        userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
        vendorName = TYPO3\CMS
        extensionName = IndexedSearch
        pluginName = Pi2
        controller = Search
        action = search
    }
}

By following configuration Pagination is working fine.

Upvotes: 0

Related Questions