| Re: how to hide the menus |
| by aph3x on 2007/11/12 14:17:32 @saidan a link or a screenshot would have been nice, however... To make columns not visible if no blocks present in default theme: modify from: le="color: #000000"><?php <td id="leftcolumn"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="default/theme_blockleft.html"}> <{/foreach}> <!-- End left blocks loop --> </td> to: le="color: #000000"><?php <{if $xoops_showlblock == 1}> <td id="leftcolumn"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="default/theme_blockleft.html"}> <{/foreach}> <!-- End left blocks loop --> </td> <{/if}> Same for the right column tho in default theme the "if" smarty are there The above will make the entire column not visible if there aren't any blocks to show |
| Re: how to hide the menus |
| by nmshah on 2007/11/12 14:15:22 Go to Admin->system->blocks then for all blocks, click "center" in the side column and in visible column click "no". |
| Re: how to hide the menus |
| by rlankford on 2007/11/12 13:46:14 Well, if you hide all the blocks, the column goes away too. But that probably isn't what you mean. |
| Re: how to hide the menus |
| by saidan on 2007/11/12 9:20:37 i means, to hide the whole colum on the right or left side or both together... it is not provided in administration system, i can hide the blocks but not the colum... :) |
| Re: how to hide the menus |
| by bleu_ on 2007/11/3 7:36:46 By entering the administration system you can use a combination of setting up functions for Blocks and for Groups. The Operations Guide could help you some. |