Thank you!<?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', 'Integrity Mountain Custom Homes');
define('HEADER_SALES_TEXT', '<strong>Custom Homes</strong>');
define('HEADER_LOGO_WIDTH', ' ');
define('HEADER_LOGO_HEIGHT', ' ');
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');
?>![]()
You've apparently deleted several lines of code from this file.
Add the highlighted portion and that will correct the problem.
You should also add the height and width for your logo.gif
Code:<?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', 'Integrity Mountain Custom Homes'); define('HEADER_SALES_TEXT', '<strong>Custom Homes</strong>'); define('HEADER_LOGO_WIDTH', ' '); define('HEADER_LOGO_HEIGHT', ' '); 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'); // Showcase vs Store if (STORE_STATUS == '0') { define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?'); } else { define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.'); } define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?'); ?>
You're the best man! I can't thank you enough, and thanks for putting up with this n00b!
![]()
I would like to know if this is possible - I basically don't want to waste my time pursuing it if it's going to be too complicated.
My site again is ncmodularhomesales.com
Since we are marketing modular homes, of course, customers can't actually purchase on our site. I would like to know if I can change everywhere it says "Shopping Cart" to "Wish List." And can I get the price to disappear? I've changed the cart status to "showcase with no prices" but the price still shows up in the cart and in the heading. It is most important to me to get the dollar amount out of the heading.
Thanks!
Thanks Clyde. I really wasn't sure if it was template specific or not. I will figure out where to post elsewhere. I did try what you suggested, but in the listings the call for price is everywhere and is a little annoying.
You can always edit the text to suit your needs:
includes/languages/rustic/english.php
Line #460 : define('PRODUCTS_PRICE_IS_CALL_FOR_PRICE_TEXT','Call for Price');
Line #461 : define('TEXT_CALL_FOR_PRICE','Call for price');
----
You can also change/create a new "call for price" graphic and save it to
includes/templates/rustic/images/call_for_prices.jpg
Thanks again! I can't begin to tell you how much you have helped me. Telling me where things are is doing the work for me, and I do appreciate it very much.![]()
Bookmarks