Manually Displaying Sideboxes.
Hey Guys / Girls
I have been creating my own template for zencart. and i wanna be able to manually display side-boxes and not display them them via the left menu. but when i delete the left manual the side-boxes don't work.
If i have
Code:
<?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?>
all the side boxes will display on the left hand side.
but i don't want the left menu to display instead i wanna be able to manually display them with
Code:
<?php require(DIR_WS_TEMPLATE . 'sideboxes/tpl_currencies.php'); ?>
This works fine when i have
Code:
<?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?>
displaying but when i delete this out none of the side-boxes work when i have them manually placed.
My site URL is http://115.64.186.233/zencart/
Thanx Guys.
Re: Manually Displaying Sideboxes.
What do you mean by "manually display them"? Do you want to place them in the main column, or arrange them in all different parts of the page, or what?
Re: Manually Displaying Sideboxes.
I mean i wanna be able to manually add the "required - echo $content" code any where i want (header footer main) not just in the left/right column
so i dont have to use the zen cart columns and i can place the sideboxes anywhere
Thanz