cilliers Posted April 11, 2004 Posted April 11, 2004 How do one remove the product totals from the categories box in MS2.2
DnJ Posted April 11, 2004 Posted April 11, 2004 Remove Numbers From Category catalog/includes/application_top.php about line 149 define('SHOW_COUNTS', true); // show category count: false=disable; true=enable Remove Arrows From Category Box Go to /includes/boxes/categories.php on line 42 you'll see: if (tep_has_category_subcategories($counter)) {$categories_string .= '->';} Change to if (tep_has_category_subcategories($counter)) {$categories_string .= '';} "One Of Life's Greatest Pleasures Is Doing What Others Say You Can't"
OceanRanch Posted April 11, 2004 Posted April 11, 2004 You also can turn them off via the Admin panel Administration->My Store->Show Category Counts and set it to false. Tom
rwilki Posted September 24, 2009 Posted September 24, 2009 Thanks Guys :rolleyes: I have spent hours trying to figure this one out too. I have set the value to "false" in admin, but still getting quantities showing in some views of my store. I've tried editing code all over the place, and nothing is helping...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.