Quote:
Originally Posted by Tralala
However, it is reporting I have 14 categories. I really only have 11 distinct ones. Any way for it to not include "All," "Random," and "Favorites?"
|
Sorry for the late reply.
Yes, find this line of code in arcade.php:
Code:
$catcount = $db->num_rows($categories) + 2;
Replace it with:
Code:
$catcount = $db->num_rows($categories) - 1;
That should do the trick for you..