kristof de block Posted June 29, 2006 Posted June 29, 2006 hello , Is it possible to din'd show the total parts in the categories window this is wat i want 1:8 on-road-> (51) (this is the standard) and i want to make this 1:8 on-road
Tormenta Posted June 29, 2006 Posted June 29, 2006 Go to includes/boxes/categories.php. Find: if (tep_has_category_cubcategories($counter)) {$categories_string.= '->';} and change it for: if (tep_has_category_cubcategories($counter)) {$categories_string.= '';} Find: $categories_string .= '</a>'; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= ' (' . $products_in_category . ')'; and change it for: $categories_string .= '</a>'; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { /*$categories_string .= ' (' . $products_in_category . ')'*/;
Tormenta Posted June 29, 2006 Posted June 29, 2006 Sorry Go to includes/boxes/categories.php. Find: if (tep_has_category_subcategories($counter)) {$categories_string.= '->';} and change it for: if (tep_has_category_subcategories($counter)) {$categories_string.= '';} Find: $categories_string .= '</a>'; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= ' (' . $products_in_category . ')'; and change it for: $categories_string .= '</a>'; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { /*$categories_string .= ' (' . $products_in_category . ')'*/;
Recommended Posts
Archived
This topic is now archived and is closed to further replies.