1
I'm building a Xoops-powered site on top of a cute design by our regular designer. The problem is that there are two specific blocks (a top menu with links to static content and the search box) that should be displayed outside the standard 3-column design that XOOPS uses (they fit in the page header).
I could move this code in my theme HTML into the header:
<{foreach from=$xoBlocks.page_bottomleft item=block}>
<{include file="a2lados/theme_blockcenter_l.html"}>
<{/foreach}>
But this would move
all the blocks of that kind.
I'm currently thinking of hard-coding the aforementioned items in my theme. For instance, I can display the regular search box, copy the generated HTML into my theme header, and hide the box.
Is that a good idea? What's the best approach I could use?