Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Get Rid Of This ->


d4funky1

Recommended Posts

Posted

Hi,

 

How can i remove

->
from the end of my category names in the infobox?

 

I am also looking to get rid of the two red bars that go horizontaly across my page top and bottom that display the date and the links to my account etc.

 

you can see it here www.fancydressretail.co.uk

 

Thanks

D4

Posted

To remove the -> In catalog/includes/boxes/categories.php look for

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

 

and change it to

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= '';

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Posted

For the red line with the navigation and the my account etc links on the right open catalog/includes/header.php and remove

 

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="headerNavigation">

<td class="headerNavigation">  <?php echo $breadcrumb->trail(' » '); ?></td>

<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="<?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>

</tr>

</table>

 

for the red line at the bottom with the date and counter open catalog/includes/footer.php and remove

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="footer">

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

</tr>

</table>

<br>

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Archived

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

×
×
  • Create New...