I have a custom menu that uses the Taxonomy_menu module. I have also added a few customizations to it in with the Menu module. One of the menu items is called "Departments" and contains all our departments up on our intranet.
Currently, when one clicks on "Departments", the main content that is shown is anything that falls within the term "Departments". However, I would like to create a page that contains links to each of the Departments. Basically, a duplicate of my custom menu but as the pages content. I'm just not sure what sections in the docs I should read or what PHP code I need to add to the page to make it work dynamically. I know how to create a page statically but I am trying to get around duplicating my work.
A bit of a noob here. Thanks!
Comments
not sure if i get it, but
not sure if i get it, but sounds like you want the same listing accessible in two ways?
One approach would be simple to alias the link to the current menu listing page. If you are using taxonomy context you can link directly to the term and it will create a subterm listing for you.
If that is not what you are after, how about a page with a php snippet http://drupal.org/node/23220 - simple write/mod the sql query to retrieve the subterms of the department category and then theme them using either a preexisting theme such as list_item or write your own (assumes phptemplate).
would this be similar to the
would this be similar to the "more" link in the onthisdate.module tutorial in the handbook? perhaps you could grok what you need from that.