I built a custom search page where I have dropdown lists for category, tag and users in order to filter my returned posts.
The custom search page has a form like this
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
Trouble is when I select a category then I m led to category search page.
When I select a tag then I m led to tag search page.
When I select a user then I m led to user search page.
How do I override this and ALWAYS land on my search.php page?