I simply want to remove everything from the Tabs (Content, Users...), to the "Enter your keywords" and search form and submit button, also getting rid of Advanced Search and the text Search Results on my search/node page.
In short, I only want the results that are displayed with search-results.tpl.php, I don't want the user interface that precedes it (I've already created a search block that handles that).
I have found ways to cut the tabs, or the advanced search, but not the entire area.
Also, I am hoping to add content in that region (I tried adding a new block to that template region, but it appears below the search results). Perhaps any insight into where the search form is created will help me figure that out as well.
I hope this is obvious to someone with a little more experience with drupal.
Thanks
Comments
Comment #1
jhodgdonThe only way to do this, in either Drupal 6 or Drupal 7, is to build a module, or use a different search module. Your module would have to do something very similar to what search_view() does currently, except leave out the search form. (That function is the one that generates the page with results and/or search form).
Hope that answers your questions and gives you some place to look.