Zen Cart Logo
Forums / General Questions / Changing 'Model number' to 'Part Number'

Changing 'Model number' to 'Part Number'

Locked

Views: 2,458

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
24 Mar 2010, 2:47 PM
#1
bottyz avatar

bottyz

New Zenner

Join Date:
Mar 2010
Location:
Nottingham UK
Posts:
90
Plugin Contributions:
0

Changing 'Model number' to 'Part Number'

Hi all,

I'm relatively new to zen cart and would like to be able to change the word 'model' to part on all the headings etc in the shop.

I have tried looking through the developers kit to search for it but it finds loads of files that apparently set it but none contain the line i'm looking for when i go to modify the files. Any ideas which file/files contain the line i'm looking for?

thanks in advance!

24 Mar 2010, 2:53 PM
#2
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Changing 'Model number' to 'Part Number'

If I recall correctly, there are about 17 LANGUAGE php files where "model" is defined.

This one is out of advanced_search.php

define('TABLE_HEADING_MODEL', 'Model');

Once you have found the relevant files with these DEFINE STATEMENTS, you will edit them like this:

define('TABLE_HEADING_MODEL', 'Part Number');

After editing, the files should not be allowed to overwrite the CORE files, but should be ftp'd to your respective CUSTOM folders (over-rides folders).

If you don't know what I mean by "over-rides", then please look in the FAQ for CUSTOM TEMPLATE SETUP before you dive headlong into carving up files.