I have a display within a view (Drupal 6, Views 2) for which I'd like to use arguments of type Node:Type. The catch is that instead of building a new display with filters for each combination of content types I'd like to see in the resulting list of data, I'd like to have a single display through which I can list one or more content types. However, it seems that using the OR logic when listing terms within an argument is only valid for taxonomy terms and id, not content type names.
1) Is this true?
2) If not, is there a pre-existing solution? I have search like mad and found nothing.
3) Or, will I have to resort to someting like this: http://drupal.org/node/70145, a method of creating something called "dynamic filter", which I could generate from argument... thus making the view behave like it was using term id, except accepting node types...
thanks,
jyg
Comments
I'm intrested too
I have a bunch of nodes and i'm trying to build a sort of glossary filter. Something like "select all nodes where field_x start whit letter 'A' OR 'B' OR 'C' etc...
I managed easly to build the views using only one argument but it's the "OR" part which i cant figure it out.
There is a check box only avaiable for taxonomy type arguments but not for regular cck fields.