mdwilson
Newbie   Posts: 1 Registered: 3/29/2003 Status: Offline
|
posted on 3/29/2003 at 06:26 PM |
Read the documentation but it did not show how to turn off the left blocks
under nukewrap.
Is that possible?
/Maurice |
| |
| |
shawn
Administrator   Posts: 4575 Registered: 10/7/2002 Status: Offline
|
posted on 3/30/2003 at 01:30 AM |
If you use AutoTheme it is simple in the admin. If not, you need to code
this in your theme.
Define $module_name global and where you call left blocks, do something
like:
if(!$module_name == "NukeWrap") {
blocks("l");
}
HTH
-Shawn |
| |
shawn
Administrator   Posts: 4575 Registered: 10/7/2002 Status: Offline
|
posted on 4/23/2003 at 09:52 PM |
On a
second look, how about:
if($module_name != "NukeWrap") {
blocks("l");
}
Whew!
-Shawn
|
| |