Your site probably wouldn't work without that file, so it must be there. Be sure you're looking in includes/langauges/english and not admin/includes/languages/english.
Your site probably wouldn't work without that file, so it must be there. Be sure you're looking in includes/langauges/english and not admin/includes/languages/english.
in the folder you mentioned, there is a small header.php with the following content:
<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
*/
// header text in includes/header.php
define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
define('HEADER_TITLE_CHECKOUT', 'Checkout');
define('HEADER_TITLE_TOP', 'Top');
define('HEADER_TITLE_CATALOG', 'Home');
define('HEADER_TITLE_LOGOFF', 'Log Out');
define('HEADER_TITLE_LOGIN', 'Log In');
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_SALES_TEXT', 'TagLine Here');
define('HEADER_LOGO_WIDTH', '192px');
define('HEADER_LOGO_HEIGHT', '64px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
// header Search Button/Box Search Button
define('HEADER_SEARCH_BUTTON','Search');
define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');
?>
That's the one.
1) a link to your site so we can see the exact text you are talking about
2) Trty this
go to admin --> Tools --> Developer tools.
in the very bottom search box enter
Sales Message Goes Here
select search all files (catalog and admin) and then hit enter.
It should tell you exactly where that is coming from
Webzings Design
Semi retired from Web Design
You prob need this file:
../includes/languages/english/classic/header.php
Looking at one of my Zen Cart installations using admin>tools>developers tool kit, I found
in includes/languages/english/classic/header.phpCode:Line #21 : define('HEADER_SALES_TEXT', '<h1>Sales Message Goes Here</h1>');
If you are going to change it, save the changed copy in the correct folder for your templates, not in /classic.
Try searching in the admin for the literal (I usually use the search box at the bottom of the screen).
The header.php you posted has
Code:define('HEADER_SALES_TEXT', 'TagLine Here');
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
Looks like you need to do some basic tutorials on web management.
Do you know what FTP means?
Do you know what plain-text editing is?
If not, then go to W3schools.com and do some tutorials in the fundamentals of website management. You will need this basic knowledge to manage parts of your site.