User Guide

The "Hook Into" drop-down menu gives you a good idea where module
can be placed.
Transplanting a module by modifying its code
Some modules cannot be transplanted into other page sections because
they lack the necessary code. For example, the Quick Search block
contains templates for both column display and header display, while the
Currencies block only has one template file which only pertains to the
header section. Likewise, the default Featured Products block can only be
placed in the center content section of the main page. If you want to
move it to a column, you'll have to do the customization yourself.
If you want to display simpler modules such as the Currencies block or the
Featured block in a position for which it wasn't built, you'll have to edit its
template files.
To customize the transplantation of a module on a hook, you must give it
the PHP function for the hook. For example, the Currency block has this
function exists:
function hookTop($params)
{
...
}
In order for instance to transplant the Currency block into the right
column, you need to create:
function hookRightColumn($params)
{
...
}
...and edit its PHP, HTML and CSS code accordingly.
Live Edit
Another way to move modules around on the shop's homepage is the Live
Edit mode, which embeds said homepage into a tool that let's you
graphically decide where to place your modules. You can access it from
the "Position" sub-tab, by clicking the "Run LiveEdit" button.