Quote:
Originally Posted by vicelover
Hi, guys
when view page source via browser, we find there are some line codes display the version of vb.
Code:
Line 7: <meta name="generator" content="vBulletin 4.0.2" />
Code:
Line 24: var SIMPLEVERSION = "402";
I'd like not show the version info, so how to remove the above two codes?
Thanks in advance.
|
At the headinclude template find the following code:
HTML Code:
var SIMPLEVERSION = "{vb:raw vboptions.simpleversion}";
And change it to:
HTML Code:
var SIMPLEVERSION = "";
This will remove the version at
Code:
Line 24: var SIMPLEVERSION = "402";
Whereas to remove it from
HTML Code:
<meta name="generator" content="vBulletin 4.0.2" />
change:
HTML Code:
<meta name="generator" content="vBulletin {vb:raw vboptions.templateversion}" />
to
HTML Code:
<meta name="generator" content="vBulletin" />
Let me know how it will go.