• 打开 \apps\home\controller\SearchController.php 文件,根据版本替换代码:
    • 2.1.1 版本
      if (cookie('lg') == 'cn') {
        // 中文处理
      } else {
        // 英文处理
        $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
        $content = $this->parser->parserPositionLabel($content, 0, 'Search', homeurl('search'));
        $content = $this->parser->parserSpecialPageSortLabel($content, -1, 'The search results', homeurl('search'));
      }
    • 3.0.3 版本
      if (cookie('lg') == 'cn') {
        // 中文处理
      } else {
        // 英文处理
        $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content);
        $content = $this->parser->parserPositionLabel($content, 0, 'Search', Url::home('search'));
        $content = $this->parser->parserSpecialPageSortLabel($content, -1, 'The search results', Url::home('search'));
      }