Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Removing default logos from home


westend

Recommended Posts

Posted

Can someone please tell me how to remove the silly defaul logos for the shopping cart contents and checkout on the home page?

 

Thanks,

Al

Posted
Can someone please tell me how to remove the silly defaul logos for the shopping cart contents and checkout on the home page?

 

Thanks,

Al

 

 

I take it you mean the ones in the header, if so, you need to edit your "catalog/includes/header.php

 

Make a backup of this file first !!!!

 

If you want to remove the images and their respective links then remove this line :

 

<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>

Posted
I take it you mean the ones in the header, if so, you need to edit your "catalog/includes/header.php

 

Make a backup of this file first !!!!

 

If you want to remove the images and their respective links then remove this line :

 

<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>

 

Thank you very much. It worked perfectly.

 

Al

Posted

Instead of messing with code and finding all the references, I made a 1x1 pixel transparent gif, named it the same as all those icons, and replaced the icons with the 1x1 gif in the catalog/images folder.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...