Lionel
08-21-2005, 08:37 PM
So you allow for many attachments in your threads and they all display on your portal news page?
This ought to be the easiest hack in vbadvanced history.
In news.php module, replace
eval('$news[\'attachment\'] .= "' . fetch_template('postbit_attachmentthumbnail') . '";');
with
eval('$news[\'attachment\'] = "' . fetch_template('postbit_attachmentthumbnail') . '";');
That's it! It will display only one thumbnail, the last one.
To display the first one, try changing the order by with
ORDER BY attachmentid DESC
See images for before and after.
This ought to be the easiest hack in vbadvanced history.
In news.php module, replace
eval('$news[\'attachment\'] .= "' . fetch_template('postbit_attachmentthumbnail') . '";');
with
eval('$news[\'attachment\'] = "' . fetch_template('postbit_attachmentthumbnail') . '";');
That's it! It will display only one thumbnail, the last one.
To display the first one, try changing the order by with
ORDER BY attachmentid DESC
See images for before and after.