Got there in the end! For anyone following in my steps and being similarly confused, I copied the following
Code:
if (DEFINE_PAGE_2_STATUS <= 1) {
$more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . BOX_INFORMATION_PAGE_2 . '</a>';
}
from includes/modules/sideboxes/more_information.php and added it to includes/modules/sideboxes/information.php right below
Code:
if (DEFINE_CONTACT_US_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
}
and edited the $more_information to just $information. Worked a treat!