Guest Posted December 18, 2005 Posted December 18, 2005 One thing that bothers me a bit about osCommerce is the redundant links in the top right corner. The default installation includes text links (which I like) and graphic links (which I do not like) I have been going through the source but haven't the slightest idea how to take off the icons. I don't want to show them on any pages. Any suggestions? Thanks. :)
Guest Posted December 19, 2005 Posted December 19, 2005 what graphics links? The popup windows for the products?
Guest Posted December 19, 2005 Posted December 19, 2005 http://demo.oscommerce.com/ See the three icons on the top right part of the window? There are text links below them. I want to keep the text links, but not the icons above.
Guest Posted December 19, 2005 Posted December 19, 2005 Here is the responsible code from catalog\includes\header.php <td align="right" valign="bottom"><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td> You could remove the entire thing, see if its ok for you.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.