Hi Ajeh, many thanks for your help... that answered the problems I was having with just copy/pasting the code...
For those of you who want to know how to add the 'page_2' etc... to the Information section instead of More Information.
Open /Shop/includes/modules/sideboxes/information.php in your favorite editor and add the following code
Code:
// BOF add Page_2 - 4 to Information
if (DEFINE_PAGE_2_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . BOX_INFORMATION_PAGE_2 . '</a>';
}
if (DEFINE_PAGE_3_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . BOX_INFORMATION_PAGE_3 . '</a>';
}
if (DEFINE_PAGE_4_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . BOX_INFORMATION_PAGE_4 . '</a>';
}
// EOF add Page_2 - 4 to Information
I added this code in at line 73 (just after the Site Map, but it can go between any part you want!!) and just a bit of general playing around if you want to split the extra pages up.
Hope this helps somebody one day :)
Jym