By jarea on
Is there any way to use Views to modify the presentation from taxonomy_menu? The taxonomy_menu works great for me, but I would like a table presentation as opposed to a teaser and I haven't been able to figure out how to do it (or how to configure a View).
Thanks in advance.
Jim
Comments
Which taxonomy_menu?
Are you asking about the Taxonomy Menu module or are you refereing to hook_menu (aka function taxonomy_menu($may_cache)) in the taxonomy module?
Taxonomy Menu
I am sorry for the confusion. I am referring to the Taxonomy Menu Module, though it shows up as taxonomy_menu in my administration settings.
Well, if i remember
Well, if i remember correctly, the taxonomy module implements a "_page hook", in that hook it recovers the vocabulary id and then the terms.
Once he gets that, he pulls all the nodes from that vocabulary that match those terms. After that, it passes the list of nodes to "taxonomy_render_nodes".
So basically, you have two choices :
The second choice is basically better imho. The first one is more a "hack" than a real, and clean, solution.
Of course, all this only works if you can code some php. If not, maybe you should add an issue and wait for someone to pick that up.
On a last note, i want to say that i'm not familliar enough with the views module to know if what you ask is actually possible (and easy to do).
taxonomy_menu_page
Cerel,
Thanks for the guidance. Your memory appears to be correct. I can code php, but I haven't familiarized myself with any of the hooks or other conventions for Drupal so I would like to avoid coding if at all possible. I was hoping that something might be doable via Views, but so far none of my tests have worked. I did add an issue and maybe someone will take a look at it.
Regards - Jim
Follow up
Jim,
Did you ever find a solution for this?
Chazoopa