i still get two when i try to place $welcomeheaders somewhere else besides the header
removed from header
put in forumhome
there two of them. arg
Quote:
Originally Posted by 99SIVTEC
Found the code that causes the problem for some people. It's the cache portion of the xml. I'm not sure why it causes problems, but I found two ways to fix it for now.
find the code below in vbwelcome_headers.xml and change the plugin active="1" to a 0 like below, or disable the Welcome Headers [Template Cache] plugin in your plugin manager.
PHP Code:
<plugin active="0">
<title><![CDATA[Welcome Headers [Template Cache]]]></title>
<hookname>fetch_userinfo</hookname>
<phpcode><![CDATA[
global $globaltemplates;
$globaltemplates = array_merge($globaltemplates, array('welcome_headers'));
]]></phpcode>
</plugin>
|