Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Change wording - Specials to Sales, Manufact to Brands


Shawna7958

Recommended Posts

Posted

Hi-

 

I need a little help finding the file that has the box header titles in it - I would like to change Specials to Slaes , and Manufacturers to Brands - Also it would be totallt fabulous if I could change these to an image file, but i would be happy with either...

 

Thanks in advance-

Shawna

Posted

Try /catalog/includes/languages/english.php

 

It has most of them I think.

 

For example "Specials":

 

// specials box text in includes/boxes/specials.php
define('BOX_HEADING_SPECIALS', 'Specials');

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

I would like to change the to an image file too.

 

Would I be right if I was to do this

 

define('BOX_HEADING_SPECIALS', '<img border="0" src="/image.gif" width="40" height="14">');

 

 

Thanks ;)

Posted

If I was going to try code to get an image, I'd try this:

 

define('BOX_HEADING_SPECIALS', tep_image(DIR_WS_IMAGES . 'INSERT_YOUR_IMAGE_NAME_HERE', 'INSERT_YOUR_MOUSEOVER_TEXT_HERE'));

If you want to specify an image size:

 

define('BOX_HEADING_SPECIALS', tep_image(DIR_WS_IMAGES . 'INSERT_YOUR_IMAGE_NAME_HERE', 'INSERT_YOUR_MOUSEOVER_TEXT_HERE', IMAGE_WIDTH, IMAGE_HEIGHT));

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Muchos Gracias Germ,

 

That will give me something to do tomorrow so.

Archived

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

×
×
  • Create New...