Active
Project:
Taxonomy Filter
Version:
6.x-1.0
Component:
Documentation
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
26 Oct 2009 at 20:05 UTC
Updated:
27 Nov 2009 at 06:26 UTC
Hi. I read docs but it's not very long. I'd like to ask if You cloud advise me.
I need to display some kind of menu with child terms.
I have panel pages with an arguments. Each page have argument - a term which contains some child terms.
And I'd like to display a block with only thos child terms depanding on page.
Is this possible to do this with Taxonomy Filter module?
I described my request more here:
http://drupal.org/node/607116
Comments
Comment #1
solotandem commentedDraw me a picture (in words if need be, unless you have a site in progress that shows this). I just want to be sure I understand your request.
Are you using panels? What other modules?
Comment #2
konrad1811 commentedI have panels and views.
Having a term(argument) I want to display its child-terms.
I tried to send argument (term that has child-terms) from panel to view and prepare view so that it could display children taxonomy terms, but Views don't allow that to show children terms...
Hope I'm clear.
Comment #3
konrad1811 commentedStill nothing...
I belive there is an inteligent way to do this (like views/panels and arguments) by not just typing the links...
However If someone know "how to..." please to show this step by step...
Comment #4
chawl commentedThis is a hand-made function that I put in my template.php (nothing to do with TF or any other module). This gets all the terms of the node and lists their children in a block if there are any. Parent terms are turned into h2 titles and children are listed under.
Then I added a new block which contains:
You should use PHP-code input type for the block of course. This code does not check if terms are associated with a node or not, so empty terms are also listed.
I hope this might be inspiring.
Comment #5
konrad1811 commentedGreat! Thanks! - I'll check this out!