Jump to the post that solved this thread.
Not Solved Customize quick search
#1
Not Solved
I want to show search result as threads if someone want to search using navbar quick search box. header_quicksearch i tried to add "&showresults=threads"
but looks like "&" and "=" character give different output like "postthread=1%26showresults%3Dthreads" and does not giving the output i am looking for.

any help please? i tried this

<input type="hidden" name="postthread" value="1&showresults=threads" />
Reply
#2
Not Solved
You cannot give a parameter to the URL (GET method) while using the search form with POST method.

So you have to add another (hidden) input element to the form:
<form ...>
...
<input type="hidden" name="showresults" value="threads">
</form>

[ExiTuS]
Reply
Jump to the post that solved this thread.


Forum Jump:


Users browsing this thread: 1 Guest(s)