Add PM info to your vbHome page
1. In
forum/index.php, find the code segment:
PHP Code:
//check usergroup of user to see if they can use PMs
...[vB code]...
eval("\$pminfo = \"".gettemplate('forumhome_pmloggedin')."\";");
} else {
$pminfo='';
}
Copy that code into the vB marked area, in your
home/index.php file.
2. Replace this code:
PHP Code:
eval("\$pminfo = \"".gettemplate('forumhome_pmloggedin')."\";");
} else {
$pminfo='';
}
With::
PHP Code:
eval("\$homepminfo = \"".gettemplate('home_pmloggedin')."\";");
} else {
$homepminfo='';
}
Create a new template (home_pmloggedin) and copy into it the forumhome_pmloggedin contents (edited to match your homepage).
Let me know if that helped you.