LMD Posted December 3, 2008 Share Posted December 3, 2008 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 More sharing options...
FIMBLE Posted December 3, 2008 Share Posted December 3, 2008 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 Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
LMD Posted December 3, 2008 Author Share Posted December 3, 2008 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 More sharing options...
FIMBLE Posted December 3, 2008 Share Posted December 3, 2008 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 More sharing options...
LMD Posted December 4, 2008 Author Share Posted December 4, 2008 Thank you very much :D Got both languages fixed now :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.