Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Help with Page Name changing

Help with Page Name changing

Locked

Views: 1,778

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
15 Oct 2006, 2:10 AM
#1
lyttonfinds avatar

lyttonfinds

New Zenner

Join Date:
May 2005
Posts:
48
Plugin Contributions:
0

Help with Page Name changing

In my sidebox.. called Information.. how can I change the name of the options and delete others?

15 Oct 2006, 2:24 AM
#2
kim avatar

kim

Obaa-san

Join Date:
Jun 2003
Posts:
26,593
Plugin Contributions:
0

Re: Help with Page Name changing

That depends on which ones you want to do what to. Can you be more specific?

15 Oct 2006, 2:29 AM
#3
lyttonfinds avatar

lyttonfinds

New Zenner

Join Date:
May 2005
Posts:
48
Plugin Contributions:
0

Re: Help with Page Name changing

Yes, sorry.

For example.. under the INformation box, there's a link called "Conditions of Use" I would like to change that to "FAQs" and also when you click it, it say "FAQs" at the top instead of "Conditions of use"

I realize this means I will have to change some of the .php files, which I know how, I just need to know which files.

15 Oct 2006, 3:48 AM
#4
sketchy avatar

sketchy

Totally Zenned

Join Date:
Aug 2006
Location:
Canada
Posts:
940
Plugin Contributions:
2

Re: Help with Page Name changing

The easiest way to locate titles like those to redefine, is to go into Admin-Tools-Developers Toolkit;

Using the first input, seach the title "Conditions of Use". You will be notified of the areas/files to modify...

/blahblah/yourstore/includes/languages/english/conditions.php 

Line #22 : define('NAVBAR_TITLE', 'Conditions of Use'); 

Line #23 : define('HEADING_TITLE', 'Conditions of Use'); 

 
/blahblah/yourstore/admin/includes/languages/english/define_pages_editor.php 

Line #31 : define('TEXT_INFO_CONDITIONS', 'Conditions of Use');  
 

Don't forget to leave the quotes surrounding the new titles or you'll get errors.

15 Oct 2006, 4:15 AM
#5
lyttonfinds avatar

lyttonfinds

New Zenner

Join Date:
May 2005
Posts:
48
Plugin Contributions:
0

Re: Help with Page Name changing

Awesome! Thanks!

15 Oct 2006, 4:19 AM
#6
sketchy avatar

sketchy

Totally Zenned

Join Date:
Aug 2006
Location:
Canada
Posts:
940
Plugin Contributions:
2

Re: Help with Page Name changing

You're welcome. Good luck on your customizing. :happy: