4
the ximple theme is based on XOOPS 2.09
for XOOPS 2.010, it still works but not so clean
three key points:
1 in the module side, set
$xoopsOption['xoops_showrblock'] = 0;
$xoopsOption['xoops_showlblock'] = 0;
2 in xoops/header.php, make sure you have
if(isset($xoopsOption['xoops_showrblock']) && ($xoopsOption['xoops_showrblock']==0)) $xoopsTpl->assign('xoops_showrblock', 0);
if(isset($xoopsOption['xoops_showlblock']) && ($xoopsOption['xoops_showlblock']==0)) $xoopsTpl->assign('xoops_showlblock', 0);
3 in your theme.html, make sure you have
<{if $xoops_showlblock}>
...
<{if$xoops_showrblock}>
...
If you use table-free theme, it is more complex than table-based, the ximple theme just gives one possible solution