How do I append my own template to the template
$ad_location[ad_navbar_below] without modifying the template manually?
In 3.6.x I added my own template hook in forumhome after $navbar and used following code.
PHP Code:
<phpcode><![CDATA[
if ($vbulletin->options['enableglobalannouncement'])
{eval('$template_hook[forumhome_after_navbar] .= "' . fetch_template('simple_global_announcement') . '";');}
]]></phpcode>
This code does not work in 3.7.0 when I try to use the new template hook that have been put in.