Contributions

InfoBoxes (Category Index)
Search: 

'Category Box as Nested Unordered List for EZ(er) CSS & Dynamic menus v 1.00

This contribution is an alternate category box which will output your store's categories as a proper nested unordered list, instead of a collection of non-breaking spaces, quasi-bullets and break tags.

What's the big deal about that you ask? With the categories now output as an unordered list, you can now more easily apply a lot of nifty CSS to turn your category list into a horizontal drop-down or vertical fly-out menu, make it a collapsible menu, easily attach bullets, add cool mouseover effects, or just about anything you can dream up!

The advantage of this technique over pure javascript solutions is that it is much more flexible, easier to apply CSS trickery to, is more search-engine friendly and makes just one query to the database.

Output includes optional CSS class tags to mark categories as selected or as parent cats. You can also choose to render all of your categories (useful for dynamic menus) or to render only the root cats and the selected category tree. Note that this contribution merely provides a foundation for you to construct a more attractive/functional menu by providing a more semantically-correct output. A little CSS-magic is required on your end, though I have included a sample vertical flyout menu CSS. I have included some resources in the readme.

Expand All / Collapse All

Version 1.1.2 (Fixed) irishfreakout 10 Jun 2008

I fixed a small issue on the last file with multiple classes not separated correctly. I also added a levels identifier for the links, it allowed me to have more fine-tuned control.

Some CSS tips: you can use the multiple classes to drill down exactly how you want different levels to look. For example, I have the links on level 2 (starts at 0 so 1 is 2) turn red when it is the selected category:
#nav li.selected.cat_lev_1 a.link_lev_1 { color: red;}
Note: multiple classes may not work with some older browsers.

Two Main Fixes:

1) Incorporated category levels changes from "yourmanstan". His addition broke the Selected/Parent classes, so that's fixed now. I also added the levels to the links themselves.

2) Moved the category count outside of the link. This is the behavior of the original category box. I liked it better as it gave me more control of modifying how the numbers look.

If you want to change it back, replace lines 187-191 with this:
$output .= ' (' . $products_in_category . ')';
}
}

$output .= '</a>';

Version 1.1.2 (Fixed) irishfreakout 10 Jun 2008
Version 1.1.2 irishfreakout 10 Jun 2008
If using CSS shooter-boy 6 Jul 2007
updated with category levels yourmanstan 3 Mar 2007
Version 1.1 Bug fix and extras nate_02631 2 May 2006
Forum Thread for Contribution nate_02631 30 Apr 2006
'Category Box as Nested Unordered List for EZ(er) CSS & Dynamic menus v 1.00 nate_02631 30 Apr 2006

Note: Contributions are used at own risk.