The faceted_search module generates its own search results when using the "Extracts" display style. They are, however, identical to the results displayed by the standard search functionality. It is possible to override the style of the standard search results by modifying the search-result.tpl.php and search-results.tpl.php file. I suggest that the "Extracts" display style should also use those templates in stead of generating its own style.

Comments

jax’s picture

It seems that it's not enough to change

  return theme('faceted_search_ui_search_page', $results, 'node');

by

    return theme('search_results', $results, 'node');

in faceted_search_ui.inc since the preprocess functions are not called. I think it's strange that you cannot use a theme function from another module. I've opened a forum topic (http://drupal.org/node/343659) for more help.