1
I have several pages I wrapped with
-----------------------------------
include("../mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 1;
?>
Text here
include(XOOPS_ROOT_PATH."/footer.php");
?>
-----------------------------------
In addition, I have a few modules, like myalbum and forums.
Now, I want to remove the right column from myalbum and forums modules.
I did it in administration->blocks, and it went ok, HOWEVER, I noticed that the right block disappeared on all the pages I wrapped before with the aforementioned method.
Any idea what makes the right block disappear, even that I have "$xoopsOption['show_rblock'] = 1;" in the wrap code?