Archived topic
Search pages, next page link to top of page.
7 replies · Started by Peter on April 7, 2021
Hi
Is it possible when the search results return more than one page of results to have the next page and number of pages to be at the top of the search results page as well?
Many thanks
Peter
Hi Peter,
Any chance you can link us to the site in question?
You can use the private information field.
Let me know :)
Hi Ying
Thanks for getting back to me.
https://www.bartholomewmusic.co.uk/.
If you search ‘thumb’ that will give you a search result of more than one page.
Many thanks
Peter
You can give this CSS a try:
nav#nav-below {
order: -1;
}
Let me know :)
Adding CSS: https://docs.generatepress.com/article/adding-css/
Hi Ying
That works great thank you.
Is it possible to have it in both places?
Cheers
Peter
Hi there,
remove the CSS Ying provided and do the following:
1. Create a new Hook Element.
https://docs.generatepress.com/article/hooks-element-overview/
2. Add this code:
<?php
if ( function_exists( 'generate_content_nav' ) ) {
generate_content_nav( 'nav-below' );
}
?>
3. Set the Hook to generate_before_main_content
4. Check Execute PHP.
5. Set the Display Rules to Search Results
Thanks David & Ying
That works great, just what I was after.
Cheers
Peter
Glad we could be of help