you might want to take a look at a couple of other pages..
altering the templates is fine.. but what is calling those templates..?
maybe look at the root/index.php and search for "FORUMHOME" it should come up a few times...
so if you are wanting the welcometext part and everything to show on all forumdisplays and showthreads part.. you will have to set it where it is recongized as being apart of the template... dunno though
Maybe someone smart can help you out... seriously! but... take a look at this part of the code or around.
PHP Code:
// if user is know, then welcome
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
eval("\$welcometext = \"".gettemplate('forumhome_welcometext')."\";");
eval("\$logincode = \"".gettemplate('forumhome_logoutcode')."\";");
eval("\$newposts = \"".gettemplate('forumhome_newposts')."\";");
} else {
eval("\$newposts = \"".gettemplate('forumhome_todayposts')."\";");
eval("\$logincode = \"".gettemplate('forumhome_logincode')."\";");
}
edit this out if I pasted to much code