Quote:
Originally Posted by NeverBored
If you want thumbnails to apply to all forums copy over the thread thumbnail plugin with this
Code:
$tt_thumbsforums = array();
$tt_displaythumbs = false;
if (!in_array($forumid, $tt_thumbsforums)) {
$tt_displaythumbs = 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 AND (attachment.extension = 'jpg' OR attachment.extension = 'gif' OR attachment.extension = 'png' OR attachment.extension = 'jpeg')) ";
$hook_query_where .= "GROUP BY thread.threadid ";
}
FYI, with this any forum you set in the array line will not use thumbnails
|
Ok so say I have alot of forums that I want to use but then about 6 I dont want to have appear what coding can you create for that? Thanks!