Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

TEXT_PRODUCTS_MODEL


fabriccut100

Recommended Posts

In the Admin when setting up a new product I'd like to change the text that says Products Model to Products Sku when when I try in categories.php

it doesn't display right, I've also looked in English.php and can't seem to find it, does anyone know where I can edit this?

Thank you to all for any help or direction

Kelly

Link to comment
Share on other sites

TEXT_PRODUCTS_MODEL is a constant. It must be defined somewhere for your pages to know what it is.

On the link I posted, it shows the constants in alphabetical order. Scroll down and click on the one you need help with. It will tell you every file that defines this constant and also every file that calls the definition. In your case the file to find the define is:

/admin/includes/languages/english/categories.php

 

 

I have no clue what that is, but Thank you for your time I really appreciate your response
Link to comment
Share on other sites

Got it! Thank you so much, I just didn't understand what you were saying, thank you for your patience with me

Have a great day!

 

kelly

 

TEXT_PRODUCTS_MODEL is a constant. It must be defined somewhere for your pages to know what it is.

On the link I posted, it shows the constants in alphabetical order. Scroll down and click on the one you need help with. It will tell you every file that defines this constant and also every file that calls the definition. In your case the file to find the define is:

/admin/includes/languages/english/categories.php

Link to comment
Share on other sites

Kelly,

 

go to the admin/includes/laguages/english and select the categories.php page.

 

about three quarters of the way done on the page you will find this code

 

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

 

Change it to this and save it.

 

define('TEXT_PRODUCTS_MODEL', 'SKU:');

 

That's it!!!

 

Dennis

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...