So I created a story named Story1 and the term Story1 was added to my "Story Vocabulary".
Then I created 2 pages, and 2 articles, and 2 images, and 2 audios and assigned them all to this Story1 category.

Now, whenever I view the Story1 node, I would like to see the content of the node as well as a list of nodes assigned to the Story1 category, sorted by node type.

How do I do this?
1. How do I pass the story title argument to a view to use it to filter by the "Story Vocabulary" taxonomy.
2. If I could create this view and maybe place it in a block, how would I write my block php logic to say "only display this block on story type nodes"

Thanks in advance for this great module,
and looking forward to getting a solution for this.

ktnk.

Comments

dodorama’s picture

foreach ($node->nat as $nat) {
   print $nat->tid;
 }

$nat->tid = associated term id
$nat->name = associated term name
$nat->vid = associated vocabulary id
$nat->description = associated term description

Zen’s picture

Status: Active » Fixed

Retrieving child nodes etc. needs to be done via code. Recently, views support has been added to the module.

-K

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.