I updated news extension to version 9.0.0. Since the ViewHelper <n:widget.paginate>
is no longer supported, I have changed the pagination related lines of list template to render the pagination partial as recommended. In the template pagination.html e.g. the next button gets created with following link:
href="{f:uri.action(action:actionName, arguments:{currentPage: pagination.nextPageNumber})}"
This works fine for the list of all news. Means without any category filter.
Problem is for category lists of news.
If the first block of news of selected category gets displayed, the URL shows:
"https://xyz.de/news/category1"
The pagination button 'next' does not point to the next page of the list of category news. It points to the next page of the complete list of all news ignoring the category filter:
"https://xyz.de/news/page-2"
The expected link would be:
"https://xyz.de/news/category1/page-2"
Is there anything I can do to get the correct pagination links?
Thanks and best regards Wulf