Yes I do.
I made it by myself and I just checked the code:
I have some specific code if the result is in a specific category (omitted below) but I mainly just say this:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="searchresult">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div>
<?php endwhile;
wp_reset_query(); ?>
Should this not be enough to list the results?
I know there was something found because of this:
<?php
if ($total_results == 1){
echo 'wurde 1 Suchresultat';
}else{
echo 'wurden ' . $total_results . ' Suchresultate ';
}?>
für <span>"<?php echo the_search_query(); ?>"</span> gefunden.</h1><br />
Its German and it says just that either one search result was found or X results were found.
If I search for some text just appearing in one custom field, I get the message that 1 result was found, but nothing is displayed below...