edit global.php
FIND:
ABOVE it add:
Code:
if (!$welcometext) {
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
eval("\$welcometext = \"".gettemplate('forumhome_welcometext')."\";");
} else { // username to dislpay when he's not registered.
$username='Stranger';
eval("\$welcometext = \"".gettemplate('forumhome_welcometext')."\";");
}
} else {
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
eval("\$welcometext .= \"".gettemplate('forumhome_welcometext')."\";");
} else { // username to dislpay when he's not registered.
$username='Stranger';
eval("\$welcometext .= \"".gettemplate('forumhome_welcometext')."\";");
}
}