Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

arrow after a category link with subcategory


sprinter_

Recommended Posts

It's in the catalog\includes\boxes\categories.php, around lines 41-43 look for:

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

}

 

Either remove these three lines or comment them out will remove the arrow.

 

Hope that helps... :blush:

Link to comment
Share on other sites

Try this:

 

In catalog/includes/boxes/categories.php, around line 20 look for the following:

 

$categories_string .= '<a href="';

 

To have the green arrow in front of evey category link, change it to:

 

$categories_string .= tep_image(DIR_WS_IMAGES . 'arrow_green.gif') . '<a href="';

 

If you wish to have a space in between the arrow and the link, add in:

 

$categories_string .= tep_image(DIR_WS_IMAGES . 'arrow_green.gif') . ' <a href="';

 

Let me know if that works for you... :P

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...