Currently, the Lightbox2: Image Thumbnail -> Full Size Video formatter always adds a group for every row in a views display. See the image CCK Display Settings fieldset on the Lightbox2 admin page for options. At the very least, it would be nice to have the ability to turn on/off video grouping in the admin interface.

The hard-coded grouping is located in the theme_lightbox2_emvideo function in the lightbox2.formatter.inc file, line 534:
$rel_full = 'lightframe['. $field['type_name'] . '|width:'. $width .'px; height:'. $height .'px; overflow:visible;]';

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dkingofpa’s picture

Here's an initial patch for 6.x-1.11 that adds a grouping select box to the admin page. You can choose no grouping or group by content type. Satisfies my immediate needs of being able to turn on/off video grouping on the admin page.