views2

Drupal: retrieve data from multiple node types in views 2?

...or, in other words, how to create a simple join as I would do in SQL? Suppose I want the following information: Just as an example: a person's full name a person's hobbies. His full name is in a (content profile) node type 'name_and_address' and his hobbies are in 'hobbies'. In SQL, I would link them together by node.uid. I've...

Retrieving names of over-ridden theme hooks in views 2 (Drupal 6)

I have a created a view (lets call it my_view). In the theme: information section if the view I have noted one of the suggested template names (views-view--my-view--default.tpl.php (or close to that)), and created my own template file with that name. This all works fine and when I visit the theme registry, I can see there is a hook the...

Drupal6 views: output "taxonomy:all terms" field with two terms as two links

Briefly: I'm making a custom view, I want a field listing the two taxonomy terms associated with an NID to output as two distinct links which return arguments for the view (term1 to view/term1, term2 to view/term2. Rather, it outputs as one aggregated link (both term1 and term2 output view/term1%0Aterm2. Am I doing something wrong or i...