How to add a VB code segment
If you want to add the
pm code (for example) to your main page, do this:
forum/index.php
Find the code:
PHP Code:
//check usergroup of user to see if they can use PMs
[...more vB code here...]
eval("\$pminfo = \"".gettemplate('forumhome_pmloggedin')."\";");
} else {
$pminfo='';
}
and copy it in the vbHome
index.php file (there is a mark for the location where you can copy the code).
Replace:
PHP Code:
eval("\$pminfo = \"".gettemplate('forumhome_pmloggedin')."\";");
with:
PHP Code:
eval("\$homepminfo = \"".gettemplate('home_pmloggedin')."\";");
Add a new template called
home_pmloggedin and put in there the html code you want to have (get inspired from 'home_pmloggedin'). Call everything in your
home template with the variable $homepminfo.
That's all.

Do the same with whatever code segment you want to add to your homepage.
[HIGH]
IMPORTANT:[/HIGH] Do not forget to add [high]home_pmloggedin[/high] to the line:
Code:
$templatesused = 'home,home_headinclude,...,[high]home_pmloggedin[/high]';
or else you will add an extra query for every template you miss to add.