The add-on description says "
Uses plugins", but that's not true,
vbgseason.xml has no plugins defined at all.
Since I prefer a plugin over template edits (minimum of additional load, I admit, but makes it much easier to update; or to apply when you've got a dozen styles), here's what I added to make the template change unnecessary:
Add a new plugin, for hook
global_complete, with the following code:
Code:
if ($vbulletin->options['guidesvbs_onoff']==1)
{ if ($vbulletin->options['guidesvbs_area']==0)
$rplseason = "<body>";
else if ($vbulletin->options['guidesvbs_area']==1)
$rplseason = "<body>";
$tempseason = "<!-- Start vBGuides Season -->\n";
$tempseason .= '<script type="text/javascript" src="season/'.$vbulletin->options['guidesvbs_type'].'.js"></script>'."\n";
$tempseason .= "<!-- End vBGuides Season -->\n";
$output = str_replace($rplseason, $rplseason."\n".$tempseason, $output);
}
Btw, I see the same problem of snow flakes not falling when scrolling, that's why it's currently on my test forum and not on a live one yet.
(edit: small mistake in code above, no time to fix it immediately, was just a incentive to go plugin anyway

)