in member.php find:
PHP Code:
// display user info
Before that add:
PHP Code:
$hisposts_db=$DB_site->query("SELECT threadid,title FROM thread WHERE forumid=X AND visible=1 AND postuserid='$userid'");
while ($hisposts=$DB_site->fetch_array($hisposts_db)) {
$his_posts.='<a href="showthread.php?threadid='.$hisposts[threadid].'">'.$hisposts[title].'</a><br>';
}
Replace X with the forumid you want his threads compiled.
Then edit the relevant template (regarding user profile display) and use the variable
in the place you want his posts listed..Should do the trick..
Logician