gwc43a Posted February 24, 2006 Posted February 24, 2006 OK, I know this is a simple thing, but I'm driving myself crazy with trying to change the text and links to what I want them to be. I'm sure this can be done in the header.php file but I'm still scratching my poor lil head over it - HELP!!! URL for site
Guest Posted February 24, 2006 Posted February 24, 2006 in catalog/includes/languages/english.php, find: define('HEADER_TITLE_CATALOG', 'Catalog'); change to define('HEADER_TITLE_CATALOG', 'Whatever you want in here'); Obviously where "whatever you want in here" is the new text
gwc43a Posted February 24, 2006 Author Posted February 24, 2006 in catalog/includes/languages/english.php, find: define('HEADER_TITLE_CATALOG', 'Catalog'); change to define('HEADER_TITLE_CATALOG', 'Whatever you want in here'); Obviously where "whatever you want in here" is the new text Hey thanks Tony! Now how do I make that text work as a link to a different site - example: define('HEADER_TITLE_CATALOG','Dicks Forum"); I want to make this a link button! Should this be done in the header.php file?? ;<?php echo $breadcrumb->trail(' » '); ?></td> change to: ;<?php echo $breadcrumb->trail(' https://whatever.com; '); ?></td>
rabbitseffort Posted February 25, 2006 Posted February 25, 2006 here is how I have mine set up--in catalog/includes/header.php go to around line 65 (mine is 65 anyway) and do it like this and make the necessary adjustments for your needed links and alt tags: <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="http://www.YourForumAdressHere.com"class="headerNavigation">Forum</a> | <a href="<?php echo tep_href_link(FILENAME_SHIPPING, '', 'SSL'); ?>" class="headerNavigation">Shipping</a> | <a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>" class="headerNavigation">Contact Us</a> </td> I have links to shipping and contact us too, so if you dont want or need those then take them out--just alter the code to suit your needs--hope this helps! :thumbsup: "I must admit that I personally measure success in terms of the contributions an individual makes to her or his fellow human beings." ---Margaret Mead--- "The answer is never the answer. What's really interesting is the mystery. If you seek the mystery instead of the answer, you'll always be seeking. I've never seen anybody really find the answer -- they think they have, so they stop thinking. But the job is to seek mystery, evoke mystery, plant a garden in which strange plants grow and mysteries bloom. The need for mystery is greater than the need for an answer. --Ken Kesey"
gwc43a Posted February 25, 2006 Author Posted February 25, 2006 I have links to shipping and contact us too, so if you dont want or need those then take them out--just alter the code to suit your needs--hope this helps! :thumbsup: Hey thanks Rabbit!! I'm gonna give it a shot!! B)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.