Greetings everyone,
I am in the middle of setting up my first Drupal site (heavily customized), and so far it has worked wonders (I am using phptemplate - I am a php developer).
For that site I am using the menu system. The main menu is displayed on the left column. I only display submenus up to the second level (I hide deeper level with css - effectively they are on the generated HTML).
Now I am trying to do the following:
At the bottom of each page (after the content), I would like to display the list of menu items that are directly under the current menu item. (the one the current page is linked from).
For example, let's assume I have this menu structure:
When I click on "a12", I land on the page linked from that menu item.
At the bottom of that page, I would like to see:
a121
a122
a123
Or when I click on "a1", I would like to see:
a11
a12
a13
a14
That is, the menu items that are directly under the current menu item.
The reason is that I don't display menu items deeper than the second level of navigation to save some screen space. But I obviously want those links to appear somewhere!