Closed (fixed)
Project:
Site map
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
22 Jul 2008 at 20:39 UTC
Updated:
23 Jul 2008 at 21:20 UTC
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
Comment #1
wtnt commentedWell, 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));