4
You can see in your theme.html that blocks are rendered first, beggining at
and content comes after centerR and centerL blocks. So if all you want is to have contents before blocks, move things around and you're set.
But if you just want to have this particular block after the content, you can do it like this:
First, in center-center blocks, you don't render you FAQ block:
<{foreach item=block from=$xoops_ccblocks}>
<{if $block.title != "FAQ_BLOCK_NAME_HERE"}>
<table cellspacing="1" cellpadding="5">
<tr>
<td class="blockTitle"> <{$block.title}>td>
tr>
<tr>
<td class="blockContent"><{$block.content}>td>
tr>
table>
<{/foreach}>
<{/if}>
Then, render it below contents:
<div id="content">
<{$xoops_contents}>
div>
<{foreach item=block from=$xoops_ccblocks}>
<{if $block.title == "FAQ_BLOCK_NAME_HERE"}>
<table cellspacing="1" cellpadding="5">
<tr>
<td class="blockTitle"> <{$block.title}>td>
tr>
<tr>
<td class="blockContent"><{$block.content}>td>
tr>
table>
<{/foreach}>
<{/if}>
td>
I'm sure there's a better way to render a single block... I wish I knew it