My client wants only Main Categories and SUbcategories to show in the category sidebox, I found this thread and implemented it:

http://www.zen-cart.com/forum/showth...ategories+open

It works great and does what I need it to do, but I am having a problem with ONE subcategory...

Here is the site:

http://michellemasters.com/store/

If you look under Illustrations/Designs in the category box on the left you will see Animals...if you click on that it shows all the subcategories from the Gift Ideas Category and not the subcategories of the animals that should be there (like Rabbits, Dogs Cats etc..)

Here is the little bit of code that was changed

PHP Code:
if (zen_not_null($cPath) or 1) {

      
$new_path '';

      
reset($cPath_array);
      
      
$cPath_array = array(32,33,47);

      while (list(
$key$value) = each($cPath_array)) {

        unset(
$parent_id);

        unset(
$first_id);

        if (
$product_type == 'all') { 
I cannot figure it out for the life of me....can anyone see anything that needs to be changed....I really need it to look like this and all the other categories are fine...its just this one!

Thank you yet once again!!!!!