How do I get rid of the vBCredits Copyright?

eclipse245

New Member
I would like to get rid of this:

vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios


at the bottom of my forum.

But I can't find it in the footer!

Where can it be?
 
Open plugins/credits_plugins.php

FInd:
PHP:
$vbulletin->templatecache[$displayanount] = str_replace('$cronimage', '$cronimage' . addslashes(base64_decode($vbulletin->options['credits_' . credits(array(0x64, 0x6f, 0x6e, 0x74, 0x74, 0x6f, 0x75, 0x63, 0x68))])), $vbulletin->templatecache[$displayanount]);

Replace with:
PHP:
$vbulletin->templatecache[$displayanount] = str_replace('$cronimage', '$cronimage', $vbulletin->templatecache[$displayanount]);
 
Back
Top