D E H Posted August 2, 2003 Posted August 2, 2003 I am running a forum next to the osCommerce. I need a link back to my forum in the header of osCommerce. Next to the My Account in the bar. How can I do this? Thanks
Guest Posted August 3, 2003 Posted August 3, 2003 Maybe this Wiki link will help, although it is for a slightly different situation. I believe that you want to put your edits after the class=headerNavigation align=right declarations. Good luck, Matt
D E H Posted August 3, 2003 Author Posted August 3, 2003 Thanks Matt, but I found one that will work. This was from back in May and it works great. I don't even know if Pappa Smurf is still around. :roll: Pappa Smurf Pappa Joined: 15 May 2003 Posts: 10 Posted: Tue May 27, 2003 4:43 am Post subject: Adding Links To Your Header -------------------------------------------------------------------------------- I dont know if anyone else has figured out this yet but it seems alot of people are asking how to add an extra text link in the top right grey link area well here is what i did Quote: <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="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | ;<a href="http://www.YOURLINK.com/" class="headerNavigation"><?php echo HEADER_TITLE_YOURLINKTEXT; ?></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> </td> i simply added the above to my cart/includes/header.php and it worked a treat. End quote[/color] Thanks again!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.