Hi,
I am trying to attach a listing of nodes of node type "A" to a node of type "B"; "A" is referencing to a taxonomy term through a Content Taxonomy field; "B" is tagged with the referenced term in taxonomy, but has no incoming CCK nodereference from "A" (because of the way my vocabulary is built, I have to use the Content Taxonomy field and can not not put an argument on the term id(s). Am I correct that this won't work without custom argument handling code in the Views argument validator?
The following tokens for my Content Taxonomy field are available as node content arguments:
[field_project_taxonomy-term] + [field_project_taxonomy-term-raw]
[field_project_taxonomy-terms] + [field_project_taxonomy-terms-raw]
[field_project_taxonomy-tid] + [field_project_taxonomy-tids]
[field_project_taxonomy-vid] + [field_project_taxonomy-vocab]
In the table "content_field_project_taxonomy" in the database, there are values for "vid", "nid" and "field_project_taxonomy_value"; the latter one seem to match the term id. In theory, it seems that I could use the "[field_project_taxonomy-tid]" token and pass it's value to an argument on the term id. However, this does not work, maybe because i don't know how to target the correct term id in the argument, or because I don't know what the "[field_project_taxonomy-tid]" token actually contains.
I have tried most of the tokens quoted above on different arguments (e.g. on the Content Taxonomy field) with trial & error, and without getting usable results. For example, if I'm using the token "[field_project_taxonomy-tid]", the argument looks like this: http://mysite.org/projects/%5Bfield_project_taxonomy-tid%5D and gives bogus results (either unfiltered, or none at all).
Sorry if this sounds confusing; this might be because I currently am pretty confused ;)
Thanks for any ideas!