like I said in a erly post you can make it not display all attachments by editing the forumdisply_query and replace with the fowling code:
PHP Code:
if ($foruminfo['gallery']=='1')
{
$gallery = true;
}
if ($gallery==true)
{
$hook_query_fields .= ", attachment.thumbnail_filesize AS thumbsize , MIN(attachment.attachmentid) AS attachmentid ";
$hook_query_joins .= "LEFT JOIN " . TABLE_PREFIX . "attachment as attachment ON(attachment.postid = thread.firstpostid) ";
$hook_query_where .= "GROUP BY thread.threadid ";
}