RE: Categories: How Do I...
Daibheid <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <2f613bea7c7d61834c0f46f59a6dccf6@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=166053#166053
----------------------------------------------------------------
Got it! I think I was making it too difficult. For others interested
[b]Replace following code[/b]
[code]
if ( ($id) && (in_array($counter, $id)) ) {
$categories_string .= '<b>';
}
// display category name
$categories_string .= $foo[$counter]['name'];
if ( ($id) && (in_array($counter, $id)) ) {
$categories_string .= '</b>';
}[/code]
with
[code]
if ($foo[$counter]['parent'] == 0) {
$categories_string .= '<b>';
}
// display category name
$categories_string .= $foo[$counter]['name'];
if ($foo[$counter]['parent'] == 0) {
$categories_string .= '</b>';
}[/code]
I hope someone finds this helpful.
D.