I'am in trouble vith this module, in my theme the taxnav_display_tabs() function have no results. I need to create a navigation with a few arguments based on books. In the first page i have a staic menu (images) with the link to the main voice of each book. I want to know how to create a secondary menu collapsing main voices chidren titles. So i've supposed that the taxnav module is the best solution for doing this. The site is http://www.lawschool.it/dev/ excuse for my english.

Comments

TDobes’s picture

Priority: Critical » Normal

I'm not exactly sure if the taxnav module is going to do what you want, based on your description.

However, I can tell you why taxnav_display_tabs() does nothing in your theme. taxnav_display_tabs does not actually print the tabs itself, but instead returns them. To print them out, you should place something like the following in your theme:
print taxnav_display_tabs();

Good luck.

Anonymous’s picture

Thanks TDobes. I've found a solution to rest the secondary menu on the page writing a custom script in my theme, that find from the nid of the called node the parent node nid, so success. I've modified also drupal's base theme for having the dept of the pages up, in one line with a custom bgcolor :-).