We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perform a search which has more than 10 results
Result page with working pagination
Selecting next page shows no results
Newest J5 ( but will probably be the same for newest J4
Url Parameters are missing in the pagination and need to be added. See: https://docs.joomla.org/J5.x:Pagination_class_removes_query_parameters
The text was updated successfully, but these errors were encountered:
Just found a solution which seems to work for me. I added following lines to components\com_search\src\View\Search\HtmlView.php around line 280:
$this->pagination->setAdditionalUrlParam('searchword', $state->get('keyword')); $this->pagination->setAdditionalUrlParam('searchphrase', $state->get('match'));
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce the issue
Perform a search which has more than 10 results
Expected result
Result page with working pagination
Actual result
Selecting next page shows no results
System information (as much as possible)
Newest J5 ( but will probably be the same for newest J4
Additional comments
Url Parameters are missing in the pagination and need to be added.
See: https://docs.joomla.org/J5.x:Pagination_class_removes_query_parameters
The text was updated successfully, but these errors were encountered: