1. make a template
2. new plugin: hook: cache_templates
code:
PHP Code:
if (THIS_SCRIPT == 'index')
{
$globaltemplates[] = 'yourtemplate';
}
3. new plugin: hook: the side you want to put the template in!in my example the indexside(forumhome)
PHP Code:
eval('$yourtemplate = "' . fetch_template('yourtemplate') . '";');
now put $yourtemplate in the forumhome template
finished
if (THIS_SCRIPT == 'index') must be changed to for your site
i hope my english isnt too bad and you anderstod me*g*