Hi. I just installed version 6.x-1.x with Drupal 6.1. It was easy to setup and configure (thanks!). I selected some menus to display and they show up but they only display the first level and none of the submenus show up. I couldn't figure out how to make them show up. I don't even know if that's something you support. Is there a way?

Comments

wtnt’s picture

Status: Active » Closed (fixed)

Well, I modified the code inside site_map.module function _site_map_menus() to do what I wanted. In case anybody wants to know, I changed one line from

$menu_display = menu_tree($mid);

to this

$menu_display = menu_tree_output(menu_tree_all_data($mid));