Guest Posted June 6, 2003 Posted June 6, 2003 How can I get rid of the "top" link and change the "catalog" link to "home" ?
chfields Posted June 6, 2003 Posted June 6, 2003 If you go into includes/languages/english.php..... you will find where you can make those changes. <?php /* $Id: english.php,v 1.107 2003/02/17 11:49:25 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // look in your $PATH_LOCALE/locale directory for available locales.. // on RedHat try 'en_US' // on FreeBSD try 'en_US.ISO_8859-1' // on Windows try 'en', or 'English' @setlocale(LC_TIME, 'en_US.ISO_8859-1'); define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime() define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime() define('DATE_FORMAT', 'm/d/Y'); // this is used for date() define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S'); //// // Return date in raw format // $date should be in format mm/dd/yyyy // raw date is in format YYYYMMDD, or DDMMYYYY function tep_date_raw($date, $reverse = false) { if ($reverse) { return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4); } else { return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2); } } // if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language) define('LANGUAGE_CURRENCY', 'USD'); // Global entries for the <html> tag define('HTML_PARAMS','dir="LTR" lang="en"'); // charset for web pages and emails define('CHARSET', 'iso-8859-1'); // page title define('TITLE', 'Your site'); // header text in includes/header.php define('HEADER_TITLE_CREATE_ACCOUNT', 'Create a Profile'); define('HEADER_TITLE_MY_ACCOUNT', 'My Profile'); define('HEADER_TITLE_CART_CONTENTS', 'Cart Contents'); define('HEADER_TITLE_CHECKOUT', 'Checkout'); define('HEADER_TITLE_TOP', 'Top'); define('HEADER_TITLE_CATALOG', 'Catalog'); define('HEADER_TITLE_LOGOFF', 'Log Off'); define('HEADER_TITLE_LOGIN', 'Log In');
Guest Posted June 6, 2003 Posted June 6, 2003 Hi BT! There are a bunch of nice tutorials in the Wiki Section. There are step by step instructions to fix both of your requests. Enjoy! http://www.www.oscommerce.com/forums/viewforum.php?f=15
Recommended Posts
Archived
This topic is now archived and is closed to further replies.