Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Typo3 删除单词';第'页;从索引搜索分页?_Typo3_Typoscript_Fluid_Typo3 9.x_Tx Indexed Search - Fatal编程技术网

Typo3 删除单词';第'页;从索引搜索分页?

Typo3 删除单词';第'页;从索引搜索分页?,typo3,typoscript,fluid,typo3-9.x,tx-indexed-search,Typo3,Typoscript,Fluid,Typo3 9.x,Tx Indexed Search,索引搜索分页输出“第1页、第2页、第3页”等链接 有没有办法编辑它来删除“页面”这个词,这样输出的只是数字 <is:pageBrowsingResults numberOfResults="{result.count}" currentPage="{searchParams.pointer}" resultsPerPage="{searchParams.numberOfResults}" /> 我刚刚查看了代码,发现页面标签是从locallang获取的,索引为displayResu

索引搜索分页输出“第1页、第2页、第3页”等链接 有没有办法编辑它来删除“页面”这个词,这样输出的只是数字

<is:pageBrowsingResults numberOfResults="{result.count}" currentPage="{searchParams.pointer}" resultsPerPage="{searchParams.numberOfResults}" />

我刚刚查看了代码,发现页面标签是从locallang获取的,索引为displayResults.page

使用
plugin.tx\u indexedsearch.\u LOCAL\u LANG.en.displayResults.page=
并且
=
后面没有字符串,它应该可以工作。
en
用于语言键,您需要为每种语言设置它

您可以在此处找到文档:

添加这个似乎没有任何作用?好的,所以在我的例子中,我需要使用
默认值
,谢谢。