This turned out to be a global replace that is very handy if you know how to use it, you can find the solution begining in post 18(for vb4) and 20 (for vb3)
So I know if I was going to add something after <head> to one template I could do it something like:
Code:
$find = '<head>';
$add = '<something>';
$vbulletin->templatecache['FORUMHOME'] = str_replace($find,$find.$add,$vbulletin->templatecache['FORUMHOME']);
but how would I go about doing this to every page, since <head> is contained in templates, and not in the headinclude it makes what I'm trying to do a little more complicated.
Tried this and a few other combinations with no luck:
Code:
$find = '<head>';
$add = '<something>';
$find = str_replace($find,$find.$add,$find);