Quote:
Originally Posted by Winchester
Hi,
i'm new to this!
I have added the code to admincp/index.php, it hasn't appeared in the mod cp! do i need to do something else?
thanks
|
The modcp requires it own hack
Open /modcp/index.php and find:
PHP Code:
// *************************************************
if (can_moderate(0, 'canannounce'))
{
Above that add:
PHP Code:
// ######### Order Pizza ###############
// only include the bubble-fix for IE - ignore when encountering the Konqueror/Safari event model - credit to vBdev's, need this code because we are working outside of their function...
if (is_browser('ie'))
{
$bubblefix = ' onclick="nobub()"';
}
else
{
$bubblefix = '';
}
echo("<div class=\"navlink-normal\" onclick=\"nav_goto('http://www.papajohnsonline.com/index.html');\" onmouseover=\"this.className='navlink-hover';\" onmouseout=\"this.className='navlink-normal'\"><a href=\"http://www.papajohnsonline.com/index.html\"$bubblefix>Order Pizza</a></div><br />");
}