im working on a new version of the newspro+vb integration thang that does most of what you want. i dont have the # of comments thing down just yet, but im working on it =D
in the meantime you can make a script like this, and plop it in your vb dir:
Code:
<?
//Newspro link to vB forum thread finder
//vbGenGetThread.php
<?
require("global.php");
$title="News: ".$subject;
//echo "$title";
$threads = $DB_site->query("SELECT threadid FROM thread WHERE title='".addslashes($title)."'");
while ($thread = $DB_site->fetch_array($threads)) {
//echo "$thread[0]";
$url="http://www.tribalwar.com/forums/showthread.php?threadid=".$thread[0];
//echo "<a href=$url>test</a>";
if(!$thread[0]){header("Location: http://www.tribalwar.com/");}
header("Location: $url");
}
?>
obviously if you use a prefix other then News: you'll have to change that part, and adjust the links to showthread.php and nocomment.shtml (or whatever you want to take them back to if theres no comment thread)
theres some problems with it (like it selects the last thread to be posted w/ that name, so if you have 2 identically titled news posts that you want active comment threads for you're SOL for now) but it works nicely for me
see it in action @
http://www.tribalwar.com/
also, so far as only doing it for each category, in newspro set your category in question to use a different doHTML subroutine, and then copy your current doHTML, name it what you told the category to use, and add something like
Code:
<a href="http://www.tribalwar.com/forums/vbgenGetThread.php?subject=$newssubject">Comments>></a>
wherever you want for a Comments link. again, use your link to your script, but that should work (except for the number of comments, but as i said i havent really figured how to go about that yet)
[Edited by Ratorasniki on 01-23-2001 at 08:50 PM]