i attempted to change the title by editing the header.php file but i did something wrong because it now says "HOME_PAGE_TITLE" rather than what i have in there. can someone help?
this is the page: http://chielleshop.com/shop/
i attempted to change the title by editing the header.php file but i did something wrong because it now says "HOME_PAGE_TITLE" rather than what i have in there. can someone help?
this is the page: http://chielleshop.com/shop/
T,
The header.php is the wrong file to edit
ftp the orginal file over
Please read the following to change your problem:
Header Tab Changes:
A. Change Header Tab Wording
1. includes/ languages/ english/ meta_tag.php
2. Line 11 & 14 need to be edited
3. ftp to: includes/ languages/ english/ override folder/ meta_tag.php
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
i must have really goofed things up because i still can't seem to repair this simple thing.
Show us your header.php page code.
*/
// 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', '');
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');
?>
when using the developer's kit to find the title it gives me this result:
/home/tea5ara/public_html/shop/includes/modules/meta_tags.php
Line #100 : define('META_TAG_TITLE', (HOME_PAGE_TITLE != '' ? HOME_PAGE_TITLE : (defined('NAVBAR_TITLE') ? NAVBAR_TITLE . PRIMARY_SECTION : '') . TITLE . TAGLINE));
however, i do not see a line 100 in the meta_taps.php file.
T,
Please post this file for me..
includes/ languages/ english/ meta_tags.php
1. use [PHP] in front and the closing tag for this when posting..
2. easier to read
Are you still using the classic template???????????????
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
PHP Code:<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2005 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: meta_tags.php 4273 2006-08-26 03:13:52Z drbyte $
*/
// page title
define('TITLE', 'Chielle');
// Site Tagline
define('SITE_TAGLINE', '');
// Custom Keywords
define('CUSTOM_KEYWORDS', 'online shopping');
// Review Page can have a lead in:
define('META_TAGS_REVIEW', 'Reviews: ');
// separators for meta tag definitions
// Define Primary Section Output
define('PRIMARY_SECTION', ' : ');
// Define Secondary Section Output
define('SECONDARY_SECTION', ' - ');
// Define Tertiary Section Output
define('TERTIARY_SECTION', ', ');
// Define divider ... usually just a space or a comma plus a space
define('METATAGS_DIVIDER', ' ');
// Define which pages to tell robots/spiders not to index
// This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit,account_history,account_history_info,account_newsletters,account_notifications,account_password,address_book,advanced_search,advanced_search_result,checkout_success,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,cookie_usage,create_account_success,contact_us,download,download_timeout,customers_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe');
// favicon setting
// There is usually NO need to enable this unless you wish to specify a path and/or a different filename
// define('FAVICON','favicon.ico');
?>
& yes, i believe i'm using classic.
T,
Try this:
- // Site Tagline
define('SITE_TAGLINE', '');- change to this:
- // Site Tagline
define('SITE_TAGLINE', '!');
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting