What I wanted to do is, When someone is viewing the forum, to take away all the blocks so they only see the forum. I have seen a mod that can do this but I cant find it anywhere. Any help is great...
re-cap. no block on the left, just the forum, in full page.
im using smart dark theme with phpbb2 installed.
Leetgamers.org
dezina Support Mod
Joined: Jun 09, 2003
Posts: 1713
Location: England
Posted:
Mon Nov 03, 2003 11:08 pm
Quote:
In your theme.php you need to find:
Code:
function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix, $dbi;
And change it to:
Code:
function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix, $name, $dbi;
Then find:
Code:
blocks(left);
And replace it with:
Code:
if ($name=='Forums') {
/* Don't display it. */
}
else {
blocks(left);
}
As ALWAYS, BACKUP any files FIRST !!!!
_________________
Backup files BEFORE altering
Use PHPNuke 7.6 with patches!!
No private messages please, POST in forums.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum