1
Hello,
I have been using XOOPS for a while and when I add pages to my site I always construct php files starting with:
include("../../mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 0;
?>
and ending with:
include(XOOPS_ROOT_PATH."/footer.php");
?>
This shows the page as the initial one but now I wonder if it is possible to show a page with the header, the footer but without the right column or without the left column but just the content at the center. I thought that $xoopsOption['show_rblock'] = 0 would do that but it does not. I would like that the center content would use the space of the right column as well, not just not showing the right column.
I hope to have expressed myself correctly. English is not my mother tongue.
Thanks in advance.
---sram