Search code examples
phpdrupaldrupal-6drupal-viewsdrupal-taxonomy

Drupal View (Page) vs Taxonomy



I have the following problem:

I use taxonomys (tx) as tags. They can be added when the node is created. So I don't know how many tx I have or what ID they have. The path of the tx is like the following:

/foo/element1
/foo/element2
/foo/element3
...

The secound element is the tx.

Now I want to use a view (page) to handle the tx-path:
/foo/%

The problem is, when I open a path like the one on top I see the theme of the node-taxonomy.tpl.php but not the style I set in the view.

Whenever I open a path in the form (/foo/not-a-tx) I can see the output of the view.

Could someone give me a hint how to get out the view output but not the tx-output?

Thanks Sebastian


Solution

  • I solved the problem with this way:

    • I use a view block (not a page)
    • I added a new output area in my ,info file
    • I use this way to show only the vocab
    • I show the block in the new area online bei foo/*

    It works Okay for me.
    Thx to every one.