Welcome to the Zen-Cart Forum!
To name the pages Page2 Page3 Page4 you will need to access your site using an ftp client.
Once connected, go to:
Code:
public_html/YOURSHOP/includes/languages/
Download the english.php file to your desktop.
Open the file using Notepad or whatever you use.
Scroll down through the code until you find the following:
Code:
// information box text in sideboxes/more_information.php - were TUTORIAL_
define('BOX_HEADING_MORE_INFORMATION', 'More Information');
define('BOX_INFORMATION_PAGE_2', 'Page 2');
define('BOX_INFORMATION_PAGE_3', 'Page 3');
define('BOX_INFORMATION_PAGE_4', 'Page 4');
Then rename the files to your extra pages
E.g.,
Code:
define('BOX_INFORMATION_PAGE_4', 'your extra page name');
Once you have done that. Save the file and upload back were you found it overwriting the old file.
Make sure you keep a spare copy of the un-edited file in case you make a mistake
Andrew