@ EnriqueHavoc and others
What I did with EnriqueHavoc's Info
This news forum in our case is visable and users can only reply to posts not make new ones.
Added:
Comments (number of replays )to each news post with a link back to the thread for people to post on it.
VBhome Index.php
Find:
forumid,postusername,postuserid,post2.pagetext as pagetext
Before add:
thread.threadid,replycount
-----------------------------------
Find:
while ($news=$DB_site->fetch_array($getnews)) {
$newstitle=$news[title];
$newstime=vbdate($timeformat,$news[dateline]);
$newsdate=vbdate($dateformat,$news[dateline]);
$newsusername=$news[postusername];
After add:
$threadurl=$news[threadid];
$replycount=$news[replycount];
save
--------------------------------------
Template: home_newsbits
Add (were you want the "(Comments: 0)"
(Comments: <a href="$bburl/showthread.php?s=$session[sessionhash]&threadid=$news[threadid]">$news[replycount]</a>)
save
-------------------------------------
:banana: