CK how much would it cost for you to do the following, with the bb-attachments plugin:-
- Create a function to be used inside the topic loop at the frontpage. Which would show the first .jpg .gif or .png attached to the relative topic in the loop.
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php attach_thumb(); ?></td>
<td>"><?php topic_title(); ?></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><small><?php topic_time(); ?></small></td>
</tr>
<?php endforeach; endif; // $topics ?>
or something similar