Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

BOX_INFORMATION_ABOUT_US


LMD

Recommended Posts

This is what it shows:

 

Specials | Advanced Search | Reviews | Create an Account | Log In

Information and Privacy | Shipping & Returns | BOX_INFORMATION_ABOUT_US

 

I have bolded the problem... I have looked through the php files, but I cant find where I change the bolded text to this: About us

 

I have the same issue in both languages, french and english... Help?

Link to comment
Share on other sites

Might be in your includes / languges / <your lanaguage>.php

if not it will be in includes / languages / <language Folder>/ about us.php

The file is an add on and not stock OSC

Nic

Ok, I have had a look but I cant seem to find the problem.... What excactly is the phrase that has to be written to show the title and not BOX_INFORMATION?

Link to comment
Share on other sites

If done properly it will be in your language.php file

So in my case english.php

Look for

 

BOX_HEADING_INFORMATION

 

You will find

 

// information box text in includes/boxes/information.php

define('BOX_HEADING_INFORMATION', 'Information');

define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');

define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');

define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');

define('BOX_INFORMATION_CONTACT', 'Contact Us');

 

 

Yours should be at the end, if not add the following

 

define('BOX_INFORMATION_ABOUT_US', 'About us');

 

So it all looks like

 

// information box text in includes/boxes/information.php

define('BOX_HEADING_INFORMATION', 'Information');

define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');

define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');

define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');

define('BOX_INFORMATION_CONTACT', 'Contact Us');

define('BOX_INFORMATION_ABOUT_US', 'About us');

 

 

Nic

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...