Hi there,

I want to create a menu with items maden manualy by menu-module
(administer->site building->menus) and items from category (taxonomy).

I just got it to work, but with a huge problem: the taxonomy category
is listed in menu as parent-container so I get this:

MENU
#####
_ item a
_ item b
_ tax-categorie
____ item c
____ item d

what I want is:

MENU
#####
_ item a
_ item b
_ item c
_ item d

I tried many combinations, but I didn't get it working how I want :(

I think I could build a workaround by overriding mytheme_menu_item in
template.php that checks if in incoming menu-array has a matching with
_ tax-categorie. Is this true the content inside there gets catched,
because its from taxonomy-cat linked and we want to have it in same
level like our manual attached menu items. So we take the catched
content inside _ tax-categorie and rebuild it with our manualy
menu items to a new array.

the resulted array is now so sorted that all menu items are on same
flat level without the tax-cat-container.

what do you think?
is there a better way to practice this?

greets melchior :D