Quote:
Originally Posted by MarkFL
If I recall correctly, what I have done in vB 3.8.9 to add something to pages is append it to either $spacer_open or $spacer_close. 
|
$spacer_open consists of I believe 3 divs and first appears in the header template which is not the <head> tag,
this is just an example not what I'm doing, but say I wanted to replace
with
Code:
<head class="someClass">
<head> is not located in the headinclude template which IMO is where it should be, but instead pretty much every main template has its own <head> tag.
so its looking like if I want to do something like this I'll have to create a replace for every template
Code:
$find = '<head>';
$replace = '<head class="someClass">';
$vbulletin->templatecache['FORUMHOME'] = str_replace($find,$replace,$vbulletin->templatecache['FORUMHOME']);
$vbulletin->templatecache['showthread'] = str_replace($find,$replace,$vbulletin->templatecache['showthread']);
etc...