Quote:
Originally Posted by Boofo
You might need to gloabalize $vbulletin. 
|
Don't know how to do that but lets forget that part for a moment. Following code works in 3.6.x
PHP Code:
<phpcode><![CDATA[
eval('$template_hook[forumhome_after_navbar] .= "' . fetch_template('simple_global_announcement') . '";');
]]></phpcode>
And the template will be dislayed if I put $template_hook[forumhome_after_navbar] in FORUMHOME after $navbar
I have tried
PHP Code:
$vbulletin->templatecache['navbar'] .= 'test';
and the word "test" is inserted where I want my template but following added to above does not work
PHP Code:
$vbulletin->templatecache['navbar'] .= $simple_global_announcement;