Loading...
 
Features / Usability

Features / Usability


Re: Re: limit search results

posts: 126886 United Kingdom
Serio Being wrote:
...How can I make it so that when I submit the search, I will be redirected to another page with the results?


Interesting idea, but i don't think there's any way of doing that at the moment, you can only direct the results to a div of your choice on the same page.

You could make the search form hide when the results arrive with a bit of javascript, which might look a bit similar. Something like this maybe (untested)?

Copy to clipboard
$(document).on("pageSearchReady", function() { $('#customsearch_0').hide(); });
There are no comments at this time.