I pre-register the variables I'm using in the stock template inside the plugin itself, correct? For instance, I have an array named $array that I'm trying to use in the FORUMHOME template.
In the plugin:
PHP Code:
$var1 = "variable one";
$var2 = "variable two";
$array = array($var1, $var2);
vB_Template::preRegister('FORUMHOME', $array);
In FORUMHOME template:
PHP Code:
{vb:raw array.var1}
Nothing outputs, though.