Right now the child categories are displaying like shown in the attached image, which is not what my client wants.
He wants them listed in a vertical unordered list like:
Parent Category:
- Child
- Child
- Child
I found this code in uc_catalog.module line 686 which appears to be handling it, but php isn't my strong suit.
Anyone know if what my client wants is possible, and how to do it? Or maybe have each one put in it's own table row?
// Display list of child category's children categories.
// If more than $max_gc_display, show "More..." link to child.
$grandchildren_list = taxonomy_get_children($child->tid, $vid);
$child->children = $grandchildren_list;
$catalog->children[] = $child;| Preview | Attachment | Size |
|---|---|---|
![]() | Picture showing the child categories listed in one row. | 70.84 KB |


