My mistake, I didn't know after the vBadvanced bit there were also a couple of template edits also to be done also. It's working fine but I have question.
There is a section in the file edits were you are asked to open the file called
init.php
and search for this:
Code:
'stylecache'
), $specialtemplates);
and place with this:
Code:
'stylecache',
// +++ vBookie
'vbookiesettings'
// --- vBookie
), $specialtemplates);
The problem is in vBulletin 3.0.8 the line you search for called.
'stylecache'
already had a comma after it like this:
'stylecache',
So what do I do with the placement code. Do I add a comma after the last line in the mod instead.
Should it look like this:
Code:
'stylecache',
'vbookiesettings'
), $specialtemplates);
or this: Seeing as the stylrcache line in vbulletin 3.0.8 already has a comma after it unlike the mod that asks you to search for it mwithout a comma which must have been a 3.0.0 thing that wasnt there in that version.
Code:
'stylecache',
'vbookiesettings',
), $specialtemplates);