CCK:6.x-2.0-rc6
ImageField:6.x-3.0-alpha2
Views: 6.x-2.0-rc1
imagefield: 6.x-3.0-alpha2
imagecache: 6.x-1.0-alpha2
Images display as expected in the nodes, so I think the configurations are not that important for this bug.
I am trying to creating a view which displays a block of all imagefield images of all nodes from a specific contenttype.
Some of those nodes do not have a single imagefield image.
But in the list of available filters in the view the "imagefield" CCK field is not displayed.
Comments
Comment #1
pavel.karoukin commentedI have got same problem. After few hours diggin found the problem - it's actually filefield module, not imagefield. I've changed function name from filefield_field_settings_views_data($field), to filefield_filefield_field_settings_views_data($field) in file filefield_field.inc. hopy it will help you too.
Comment #2
jhedstromThis is still occurring in the latest alpha.
Renaming the function as mentioned in #1 doesn't fix the problem, since the function filefield_filefield_field_settings_views_data is never called. The filefield_field_settings function is looking for the function named filefield_field_settings_views_data. Renaming simply hides the function and views reverts to default CCK handling, which is less than ideal for filefield fields.
Comment #3
jhedstromThis is what's removing the filefield filters, and appears intentional:
The problem is that with that by unsetting the filter, on a node view, without the upload module enabled, I don't get any filters provided for filefield fields.
Comment #4
catorghans commentedIf I activate the "Upload: Has attached files" filter then none of my nodes are selected although most of them have imagefield images.
Comment #5
eikes commentedI can confirm this problem
Comment #6
Stefanos Karagos commentedSame here!
Any help please???
Comment #7
dopry commentedLook for filefield.. and I think the views filters are currently broken, but if you'd be nice enough to share you content type setup and views configuration, and step to reproduce someone in the know may be able to help you...
Comment #8
drewish commentedthis all boils down to a lack of understanding of the new views2 paradigm.
you need to add a relationship for your file or image field and then add the a filter for "File: File ID" and specify "Is not empty (NULL)".
Comment #9
raff77 commentedI too have used the image field and can't get access to the path within the view. It gives me an fid but no path, even with relationships.