am using a custom template sending it to the header template!
CT:
PHP Code:
if ($vbulletin->options['4teck_away_on_off'] AND $vbulletin->options['4teck_away_autotemp_on_off'])
{
$globaltemplates[] = '4teck_away_template';
}
PT:
PHP Code:
if ($vbulletin->options['4teck_away_on_off'] AND $vbulletin->options['4teck_away_autotemp_on_off'])
{
$vbulletin->templatecache['header'] = str_replace($vbulletin->options['4teck_away_autotemp_search_text'], $vbulletin->options['4teck_away_autotemp_search_text'].$vbulletin->templatecache['4teck_away_template'],$vbulletin->templatecache['header']);
}