View Single Post
Old July 12th, 2006, 03:21 PM   #10 (permalink)
GateKeeper
Member
Verified Customer
 
Join Date: May 2006
Posts: 240
Got it!

Using a separate template for this process (copy categories.tmpl to whatever)
Change:
Quote:
for ( $x=0; $x < $cats['catcount']; $x++ ) {
if ( $cats['dodetails'][$x] == 1 ) {

To:
Quote:
for ( $x=0; $x < $cats['catcount']; $x++ ) {
if ( $cats['numproducts'][$x] < 1 )
continue;
if ( $cats['dodetails'][$x] == 1 ) {
GateKeeper is offline   Reply With Quote