Support Spidean |
Do you like our FREE downloads? How about the FREE support for the FREE downloads? Please help us out and donate any amount! It's fast and easy through PayPal.
|
Shawn
Administrator   Posts: 4607 Registered: 10/7/2002 Status: Online
|
posted on 5/8/2006 at 07:13 PM |
PHP-Nuke and some of the forks hardcoded the message and center block
display so there is no way for AutoTheme to turn them off.
There are two choices:
1. Turn off the center blocks in AutoTheme (the disadvantage is that you
can't control/theme them as you can the other blocks).
2. Edit header.php, look for:
if (defined('HOME_FILE')) {
message_box();
blocks("Center");
}
And replace with:
if (defined('HOME_FILE')) {
message_box();
if (!defined('AUTOTHEME_THEME_INITIALIZED')) {
blocks('Center');
}
}
-Shawn
[Edited on 3/18/2009 by Shawn] |
| |
| |
|
|
|
|