Zen Cart Logo
Forums / General Questions / How to change Model to catalog

How to change Model to catalog

Locked

Views: 891

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
21 Oct 2007, 4:14 PM
#1
ping avatar

ping

New Zenner

Join Date:
Oct 2007
Posts:
13
Plugin Contributions:
0

How to change Model to catalog

Is there a possible way to change the "model" to "catalog" in product?

thanks

21 Oct 2007, 5:21 PM
#2
econcepts avatar

econcepts

Totally Zenned

Join Date:
Dec 2005
Posts:
1,505
Plugin Contributions:
2

Re: How to change Model to catalog

If all you want to alter is the terminology of how the customer sees it (insteadd of seeing "model" you want them to see "catalog") then you can do this by looking at the language files.

In your case it would be specifically the following file:

/includes/languages/english/product_info.php

Find the following line and alter as needed

define('TEXT_PRODUCT_MODEL', 'Model: ');

(Yours would look like this:)
define('TEXT_PRODUCT_MODEL', 'Catalog: ');

22 Oct 2007, 4:54 AM
#3
ping avatar

ping

New Zenner

Join Date:
Oct 2007
Posts:
13
Plugin Contributions:
0

Re: How to change Model to catalog

econcepts:

If all you want to alter is the terminology of how the customer sees it (insteadd of seeing "model" you want them to see "catalog") then you can do this by looking at the language files.

In your case it would be specifically the following file:

/includes/languages/english/product_info.php

Find the following line and alter as needed

define('TEXT_PRODUCT_MODEL', 'Model: ');

(Yours would look like this:)
define('TEXT_PRODUCT_MODEL', 'Catalog: ');

econcepts,

Thanks for the reply. It works.