0

I am working Apache solr search its working fine. But I need to change the search result to my view like title, date, short description and image.

Can you please someone help me. How to override the search result to custom result.tpl page.

SagarPPanchal
  • 9,839
  • 6
  • 34
  • 62
Rajesh Baskaran
  • 322
  • 1
  • 11

1 Answers1

0

There are several options :

  • Altering/adding template variables for individual search result by implementing hook_preprocess_search_result().
  • Altering the template file itself search-result.tpl.php (first you need to copy the original in your theme's templates folder).
  • The same can be done on the entire set of results (rows per page) using search-results.tpl.php & hook_preprocess_search_results().
  • Add custom CSS or override some rules in your theme.
EricLavault
  • 12,130
  • 3
  • 23
  • 45