How to Remove IbProArcade Footer?

in ' skin_Arcade.php ' look for

Code:
function copyright($version,$country) {
$text = "
	<div align='center' style='font-size: 8pt;'>
    	ibProArcade v{$version}<br />";

if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version von MrZeropage<br />"; }
else { $text = $text . "Extended vBulletin-Version by MrZeropage (<a href='http://www.vbulletin.org/forum/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }

if ($country == "de") { $text = $text . "deutsche Ãœbersetzung von MrZeropage<br />"; }
$text = $text . "Original &copy; Chris Kelly 2004<br /></div><br />";

Replace with

Code:
function copyright($version,$country) {

$text = "";



if ($country == "de") { $text = $text . ""; }

else { $text = $text . ""; }



if ($country == "de") { $text = $text . ""; }

$text = $text . "";
 
Feckie said:
in ' skin_Arcade.php ' look for

Code:
function copyright($version,$country) {
$text = "
	<div align='center' style='font-size: 8pt;'>
    	ibProArcade v{$version}<br />";

if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version von MrZeropage<br />"; }
else { $text = $text . "Extended vBulletin-Version by MrZeropage (<a href='http://www.vbulletin.org/forum/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }

if ($country == "de") { $text = $text . "deutsche Ãœbersetzung von MrZeropage<br />"; }
$text = $text . "Original &copy; Chris Kelly 2004<br /></div><br />";

Replace with

Code:
function copyright($version,$country) {

$text = "";



if ($country == "de") { $text = $text . ""; }

else { $text = $text . ""; }



if ($country == "de") { $text = $text . ""; }

$text = $text . "";

I done exactly as above, but the copyright still appears in the footer :(

Can anyone please tell me how to remove it?

HTML:
ibProArcade v2.6.8+
Extended vBulletin-Version by MrZeropage (www.vbulletin.org)
Original © Chris Kelly 2004
 
pspmaster93 said:
or if u are using the v3arcade skin do the same edits in the v3Arcade.php file

thanks for this, i hate copyrights

i don't find the code you said in arcade.php for the V3Arcade, are you sure it is the same process?
 
Back
Top