Quote Originally Posted by waltinrio View Post
thanx...ill have to look into that a little bit more...let me ask this if you dont mind. how do I change the names page 2 page 3 etc?


To Change The Names of Page 2, 3, 4 in the More Information Sidebox:

This has to be changed in your Zen Cart files, either via FTP or your Cpanel File Manager.

The file you need is public_html/includes/languages/YOUR TEMPLATE/english.php

The place to change it is located on or about line 147 and it will look like this:

// information box text in sideboxes/more_information.php - were TUTORIAL_
define('BOX_HEADING_MORE_INFORMATION', '');
define('BOX_INFORMATION_PAGE_2', 'Page 2');
define('BOX_INFORMATION_PAGE_3', 'Page 3');
define('BOX_INFORMATION_PAGE_4', 'Page 4');
Make sure you leave the ' marks and only change the text in between. (I highlighted it in red what to change)

Now you will also have to go to public_html/includes/languages/english/page_2.php

To change this:

define('NAVBAR_TITLE', 'Page 2');
define('HEADING_TITLE', 'Page 2');
Hope that helps.