To put a new page into the information sidebox you need to edit the file:
includes/modules/sideboxes/information.php
- and add the page(s) desired then save it in:
includes/modules/sideboxes/YOUR_TEMPLATE (the over-ride directory)
Insert the new page where you want it listed. Here is a fragment from mine:
I've added several new pages - The About Us page is the first listed so it's the first in the sidebox.PHP Code:unset($information);
if (DEFINE_ABOUT_US_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a>';
}
if (DEFINE_DESIGN_STUDIO <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_DESIGN_STUDIO) . '">' . BOX_INFORMATION_DESIGN_STUDIO . '</a>';
}
For the footer, try an ez-page link.



