Guest Posted August 26, 2006 Share Posted August 26, 2006 where do i remove the ->(number of subctegories) i have looked in includes/boxes / cateogories.php and set the following code to false if ($tree[$counter]['next_id'] != false) { tep_show_category($tree[$counter]['next_id']); } which has removed the numbers in brackets but i still get -> to the right of the category. there must be something else i am missing or is there a different way to achieve what i want thanks Link to comment Share on other sites More sharing options...
matrix2223 Posted August 26, 2006 Share Posted August 26, 2006 Those are categories counts. Go to your admin panel -> config. -> show category count (set to false) this will rid you of your (17) Eric Link to comment Share on other sites More sharing options...
adrian.pearce Posted August 27, 2006 Share Posted August 27, 2006 Those are categories counts. Go to your admin panel -> config. -> show category count (set to false) this will rid you of your (17) Eric This leaves -> How do you remove this.... Link to comment Share on other sites More sharing options...
Maggilove Posted August 27, 2006 Share Posted August 27, 2006 In (catalog)/includes/boxes/categories.php find this line... if (tep_has_category_subcategories($counter)) { $categories_string .= '->'; } and change it to... if (tep_has_category_subcategories($counter)) { $categories_string .= ''; } Link to comment Share on other sites More sharing options...
adrian.pearce Posted August 27, 2006 Share Posted August 27, 2006 In (catalog)/includes/boxes/categories.php find this line... if (tep_has_category_subcategories($counter)) { $categories_string .= '->'; } and change it to... if (tep_has_category_subcategories($counter)) { $categories_string .= ''; } You are a star works great many thanks...... :thumbsup: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.