Hi
Firstly great module and possibly the best documentation I've seen.
Drupal 6.14
Imagefield 6.x-3.1
Filefield 6.x-3.1
Imagecache 6.x-2.0-beta10
I have 2 CCK imagefields attached to my node. The first is single value ( for a main, larger thumbnail photo ), and the second is multi-value ( for a series of small thumbnails ). I have set the appropriate Lighbox2 preset for each field under "Display Fields". Lightbox popsup fine when viewing the node a clicking on an image, but the next and previous buttons only cycle through the images in the multi-value field i.e. the group doesn't encompass the images from both the single AND multi-value fields. What I really want is for all the images on the node to form the slideshow.
You can see the problem on this dev site here : http://www.resales4uspain.com/taj-mahal-0001. I want the lightbox to allow me to cycle through all the photos.
Is this possible by configuration or otherwise ?
Thanks
Dave
Comments
Comment #1
stella commentedNot entirely sure of your set up but check your CCK display settings at admin/settings/lightbox2. The label refers to views settings, but it may work on the cck node too.
Comment #2
El Bandito commentedStella
Thanks for responding. I have already set the "CCK Display Settings" to group by Node ID in the hope that it might work, but unfortunately it seems it is only relevant for Views.
Cheers
Dave
Comment #3
locomo commentedI'm experiencing the same behavior with a very similar setup.
I have 2 imagefields with one a multi-value. Both images popup in lightbox but they are not grouped together (the single pops up alone while the multi-value has next/prev buttons)
I've tried using a custom class from the Automatic Image Handling settings (settings/lightbox2/automatic) with grouping set to Lightbox Grouped
but no luck
Comment #4
pieterdcI wanted the same and I got it, but it's not super easy.
I set the "CCK Display Settings" to group by Node ID, made a view that displays the 2 imagefields I wanted to group, provided a block display and adjusted my node.tpl.php for that content type to embed the view like this:
print views_embed_view('product_photos', 'block_1', $node->nid);