Zen Cart Logo
Forums / Basic Configuration / Changing Page Name

Changing Page Name

Locked

Views: 2,666

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
9 Jul 2008, 5:19 PM
#1
herbal4health avatar

herbal4health

New Zenner

Join Date:
Jul 2008
Posts:
5
Plugin Contributions:
0

Changing Page Name

Hello, I'm trying to change the name on 'page 2' on the home page. I've done exactly what it says in the help guides and my content is showing when you click page 2 on the home page but it still says page 2 not the name I have given it.

Any help would be appreciated.

9 Jul 2008, 5:37 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Changing Page Name

I'm not sure what it says in the tutorials, but if you go to Admin - Tools - Developers Tool Kit and search for 'page 2' you'll see all the places where that's defined.

9 Jul 2008, 5:46 PM
#3
herbal4health avatar

herbal4health

New Zenner

Join Date:
Jul 2008
Posts:
5
Plugin Contributions:
0

Re: Changing Page Name

Hello, thanks for the reply. I went into includes/languages/english/html_includes/classic/define_page_2.php as it says in define pages I did change the text on the file but it stayed as page 2. In the help tutorials it says:

*To change the name of page_2, page_3 or page_4

open the appropriate file includes -> languages -> ENGLISH -> page_?.php

make the changes to fit your needs
define('NAVBAR_TITLE', 'Page ?');
define('HEADING_TITLE', 'Page ?');
then save the file to

includes -> languages -> ENGLISH -> CUSTOM -> page_?.php and upload to your server.*

There is no CUSTOM folder and if I try to make one it only comes up as a page not a folder. So I don't know if this is what is going wrong.

10 Aug 2008, 7:34 PM
#4
nzinni avatar

nzinni

New Zenner

Join Date:
May 2008
Posts:
6
Plugin Contributions:
0

Re: Changing Page Name

"CUSTOM" refers to the name of your custom template. For example, if you use the Apple Zen template, then replace "CUSTOM" in the instructions with "apple_zen". Check the includes/templates folder for the correct name to use.

Other times, you may see terms like "MYTEMPLATE" or ""TEMPLATE" instead of "CUSTOM" used to refer you to your template folder.

21 Dec 2008, 5:48 AM
#5
danielosko avatar

danielosko

Zen Follower

Join Date:
Dec 2008
Location:
Hanover Township PA, USA
Posts:
122
Plugin Contributions:
0

Re: Changing Page Name

I believe that you must change the 'page_?' in the:
**\includes\languages\english\page_?.php **files. Do this in page_2.php, page_3.php and page_4.php. (If your changing all three names).

define('NAVBAR_TITLE', 'PUT PAGE NAME HERE');
define('HEADING_TITLE', 'PUT PAGE NAME HERE');

as well as the **\includes\languages\english.php **file.
define('BOX_INFORMATION_PAGE_2', 'PUT PAGE NAME HERE');
define('BOX_INFORMATION_PAGE_3', 'PUT PAGE NAME HERE');
define('BOX_INFORMATION_PAGE_4', 'PUT PAGE NAME HERE');

I've done this and it works fine.

Hope this helps!:smartalec:

21 Dec 2008, 7:47 AM
#6
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Changing Page Name

It is better to follow the tutorial and change in the custom template instead. If you are using the default template, then that will be custom template's name "classic", otherwise you need to use the name of the template you are using.