open up your skin_arcade.php in your editor
(there are 2 skins) but either way
at the very bottom
see if this code is there
Code:
function generalbox($title,$text) {
global $ibforums;
return <<<EOF
<div class="tborder">
<table width='100%' border='0' cellspacing='0' cellpadding='4'>
<tr>
<th width='33%' align='center' class='tcat'>{$title}</th>
</tr>
<tr>
<td width='33%' align='center' class='alt2' valign='middle'>{$text}</td>
</tr>
</table>
</div>
EOF;
}
}
?>
if not add it
should be bleow
Code:
function copyright($version,$country,$BFL) {
//
// if you had BRANDING FREE before ibProArcade v2.7.1+
// please contact me via mail -> ibproarcade@gmail.com
// to get the new instructions for BRANDING FREE - more easy now!
// !! DO NOT CHANGE THE CODE IN HERE ANYMORE !!
//
$text = "
<div align='center' style='font-size: 8pt;'>
ibProArcade v{$version}<br />";
if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version © MrZeropage (<a href='http://www.vbulletin-germany.org/forumdisplay.php?f=28' target='_blank' title='www.vbulletin-germany.org'>www.vbulletin-germany.org</a>)<br />"; }
else { $text = $text . "Extended vBulletin-Version © MrZeropage (<a href='https://vborg.vbsupport.ru/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }
$text = $text . "</div><br />";
return ($BFL ? "" : $text);
}
so it would look like this in total
Code:
function copyright($version,$country,$BFL) {
//
// if you had BRANDING FREE before ibProArcade v2.7.1+
// please contact me via mail -> ibproarcade@gmail.com
// to get the new instructions for BRANDING FREE - more easy now!
// !! DO NOT CHANGE THE CODE IN HERE ANYMORE !!
//
$text = "
<div align='center' style='font-size: 8pt;'>
ibProArcade v{$version}<br />";
if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version © MrZeropage (<a href='http://www.vbulletin-germany.org/forumdisplay.php?f=28' target='_blank' title='www.vbulletin-germany.org'>www.vbulletin-germany.org</a>)<br />"; }
else { $text = $text . "Extended vBulletin-Version © MrZeropage (<a href='https://vborg.vbsupport.ru/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }
$text = $text . "</div><br />";
return ($BFL ? "" : $text);
}
function generalbox($title,$text) {
global $ibforums;
return <<<EOF
<div class="tborder">
<table width='100%' border='0' cellspacing='0' cellpadding='4'>
<tr>
<th width='33%' align='center' class='tcat'>{$title}</th></td>
</tr>
<tr>
<td width='33%' align='center' class='alt2' valign='middle'>{$text}</td>
</tr>
</table>
</div>
EOF;
}
}
?>
also in your arcade main setting
Show announcement in Arcade should be set to yes..