Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Categories - arrows at end of text


surrfman

Recommended Posts

Posted

How would I remove those arrows and lines that appear at the end of any text line in the Categories menu?

 

Thanks a bunch,

 

Timmy C

Posted

@@surrfman

 

Edit this line in the /includes/modules/boxes/bm_categories.php file:

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

}

 

 

 

Chris

Posted

@@surrfman

 

To completely remove the ->

 

change it to this:

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= ' ';

}

 

 

 

Chris

Posted

Thanks man... Once again!!! I thought that was I had to delete, just wanted to make sure!

Archived

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

×
×
  • Create New...