hi,
i want to add a link to my osCommerce shop up the top next to My Account| Cart Contents | Checkout.
how do i do this?
thanks
This is a discussion on Adding a link next to "My Account | Cart Contents" within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; hi, i want to add a link to my osCommerce shop up the top next to My Account| Cart Contents ...
hi,
i want to add a link to my osCommerce shop up the top next to My Account| Cart Contents | Checkout.
how do i do this?
thanks
any1?
Hi,
Do this in header.php file inside includes/ approximately line 64, you will see the codes there, you can insert your own link there.
PaulCode:<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> &nbsp;|&nbsp; <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> &nbsp;&nbsp;(insert your link here)</td>
Bookmarks