its not really a hack but a link to put that box in the admincp. Just go to your root folder in your ftp and go to admincp>index.php DL that and open it in a program that will allow you to edit, I prefer textpad and go to line 577 or thereabouts and the code should look like this;
Code:
construct_nav_spacer();
$printhr = false;
if (can_administer('canadminsettings'))
{
$printhr = true;
construct_nav_option($vbphrase['Donation MOD'], 'http://www.YOURSITE.com/admincp/donation_admin.php', '<br />');
construct_nav_group("Donation MOD", '<hr />');
construct_nav_option($vbphrase['vbulletin_options'], 'options.php?null=0', '<br />');
if ($debug == 1)
{
construct_nav_option($vbphrase['admin_help_manager'], 'help.php?do=manage&script=NOSCRIPT');
}
construct_nav_group($vbphrase['vbulletin_options'], '<hr />');
}
if ($printhr == true)
{
construct_nav_spacer();
}
the green area is the link to the mod, now I am not a coder of any means, just good at relating other written stuff but I do have one issue with mine, while it gives me a link to the donation mod when you click on it you will see the drop down has an empty box, almost looks like nothing is there but you can click on the blank line, I dont quite know or have dedicated any real time to figuring out how to put the phrase "edit donation" in there. If you do maybe you can send it back to me but that should at least get you a link from the acp.