they don't show up the side box with the other define pages
These pages by default exist in the sideboxes/more_information.php sidebox
Turn it on from the admin > tools > layout boxes controller > sideboxes/more_information.php
If brave, can move them from /includes/modules/sideboxes/more_information.php to your template copy of information.php
The following can be copied and pasted into the information.php file in the desired display order
Code:
if (DEFINE_PAGE_2_STATUS <= 1) {
$more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . BOX_INFORMATION_PAGE_2 . '</a>';
}
Also read the note in more_information.php:
Code:
// insert additional links below to add to the more_information box
// Example:
// $more_information[] = '<a href="' . zen_href_link(FILENAME_DEFAULT) . '">' . 'TESTING' . '</a>';
Bookmarks