[How To] Remove "Powered by vBulletin" from Your Page Titles

Daz

New Member
By default, all vB-powered pages have "Powered by vBulletin" in all Page Titles.

Apply the following modification to remove it, thus increasing your own keyword density.

In Phrase Manager, search for this phrase variable: x_powered_by_vbulletin

By default, it is:

PHP:
{1} - Powered by  vBulletin

Change it to:

PHP:
{1}


or change it to say something else you want it to say
 

zetsu216

New Member
Daz said:
By default, all vB-powered pages have "Powered by vBulletin" in all Page Titles.

Apply the following modification to remove it, thus increasing your own keyword density.

In Phrase Manager, search for this phrase variable: x_powered_by_vbulletin

By default, it is:

PHP:
{1} - Powered by  vBulletin

Change it to:

PHP:
{1}


or change it to say something else you want it to say


Where is Phrase manager??
 

Galeras

New Member
Global , around page 51 or 52.


-

This might sound easy for some of us here, but it's a very good thread Daz, and certainly deserves a thanks!
 

HiddenEvil

New Member
Daz said:
By default, all vB-powered pages have "Powered by vBulletin" in all Page Titles.

Apply the following modification to remove it, thus increasing your own keyword density.

In Phrase Manager, search for this phrase variable: x_powered_by_vbulletin

By default, it is:

PHP:
{1} - Powered by  vBulletin

Change it to:

PHP:
{1}

or change it to say something else you want it to say

great tip m8 works on 1 of my forums but i need to know if its in a custom theme \ stlye wot do i look for ?

in 1 of my thems its jsut got this below and i dont know wot to change

Code:
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
 

SasukeX

New Member
On some styles it may be [powered_by_vbulletin] instead of [x_powered_by_vbulletin] so check it out as well.
 

HiddenEvil

New Member
thanks alot m8 for ya reply

ive found out how to do it all ive done was changed this

Code:
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
to this
Code:
<title> MY WEBITE ('.')</title>
and it worked
 

DarkSlacker

New Member
Thanks alot, works great.

Anyone know how to remove
the footer for the ibProArcade

ibProArcade v2.6.5+
Extended vBulletin-Version by MrZeropage
Original © Chris Kelly 2004

I would like to remove that as well, if possible.
Thanks
 

Tantric

New Member
As someone who got a set of nulled forums shut down before, if you have the ability to do so, remove the notice at the top. It's an easy thing for the "powers that be" to do a google search for that phrase and take a quick look at your link and confirm registration on vb.
 

SasukeX

New Member
Tantric said:
As someone who got a set of nulled forums shut down before, if you have the ability to do so, remove the notice at the top. It's an easy thing for the "powers that be" to do a google search for that phrase and take a quick look at your link and confirm registration on vb.

If they want to discover that it's vBulletin so badly... they can just look at the forum structure and such rather then searching phrases. But then again, it's not a bad idea.
 
J

J.Black

Guest
Tantric said:
As someone who got a set of nulled forums shut down before, if you have the ability to do so, remove the notice at the top. It's an easy thing for the "powers that be" to do a google search for that phrase and take a quick look at your link and confirm registration on vb.

i do that since i open my site in 2005 and see me no one has busted me :), Jelsoft and Pirate Reports use search engines t find them using vB they search
Powered By vBulletin, and vBulletin, just remember also to remove the meta generator in the header include and replace the Powered By vBulletin with another one just like GYSN like Powered By SMF or something like that,and search a good hosting company
 

DarkSlacker

New Member
J.Black said:
also to remove the meta generator in the header include and replace the Powered By vBulletin with another one just like GYSN like Powered By SMF or something like that,and search a good hosting company

Which files do you need to change to remove "VBulletin" from the meta in the source code?

Nevermind, found it.
For those of you wondering how to do it, edit the headinclude template, and search for "meta" you'll see where to remove the line. It seemed to have worked..
 

lermontov

New Member
how about this:
<script type="text/javascript">
<!--
vBulletin_init();
//-->
</script><!-- vBadvanced 5-0-5-4-8 -->

</body>
</html>
from vbadvanced cmps source

<!--
vBulletin_init();
//-->
</script><!-- Powered by vbadvanced -->
</body>
from vbadvanced dynamics and links directory source

where do you remove this?
 

faizalperu

New Member
Here are the steps to remove the branding from vB 3.6.x:

1. Edit the footer template here:

Admin Control Panel -> Styles & Templates -> Style Manager -> Edit Templates -> footer

And remove this section:

<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->

2. Then, change this section of your FORUMHOME template from this:

<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>

To this:

<title>$vboptions[bbtitle]</title>

3. And remove this from the printthread template:

<p class="smallfont" align="center">
$vbphrase[powered_by_vbulletin]
<br />
$copyrighttext
</p>

4. Change the phrase x_powered_by_vbulletin:

From this:

{1} - powered by vBulletin

To this:

{1}

5. Then, edit the vbulletin_message phrase and change this:

vBulletin Message

...to whatever you want.

6. For the vBulletin FAQ, just edit it with a new translation.

Admin Control Panel -> FAQ -> FAQ Manager -> vBulletin FAQ -> Edit -> Translations

7. And finally, in archive/index.php you need to remove this line:

<div id=\"copyright\">$vbphrase[vbulletin_copyright]</div>


Notes:

A. To edit Templates:

Admin Control Panel -> Styles & Templates -> Style Manager -> Edit Templates

B. To edit Phrases:

Admin Control Panel -> Languages & Phrases -> Search in Phrases -> phrasename (Phrase Variable Name Only)

Click on edit, and place the new phrase in the available language text boxes.
 
Top