lightbox embedded video gallery???

ephman - May 6, 2008 - 11:17

i have having just the worst time trying to make an embedded video gallery with lightbox. ny step by step help would be really helpful. i've tried so many things even embedding gallery2, but had zero luck incorporating lightbox in it. views have been causing me grief too... i'm currently using drupal6 but if i need to move to drupal5 i will. i've searched and searched, and have come up empty. thank you very much!

be well,

ephman

have you seen

chlobe - May 6, 2008 - 11:38

http://drupal.org/project/shadowbox

dev just released for 6.0

yes i have seen it. but how

ephman - May 6, 2008 - 11:57

yes i have seen it. but how could i create a gallery of embedded videos using it? it's the gallery part that i'm very confused on.

thanks,

ephman

apologies

chlobe - May 6, 2008 - 12:07

sorry, my bad...thought you may have missed this module (which I haven't looked at). Sorry I can't help.

actually just responding

ephman - May 6, 2008 - 12:31

actually just responding helps. thanks.

ephman

=-=

VeryMisunderstood - May 6, 2008 - 12:10

It would help if you took the time to explain everything you've done in a step by step manner.
This will make it clearer to those who want to help understand where you are in your process or where there may be a flaw in your method.

_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )

thank you. what i'd like is

ephman - May 6, 2008 - 12:30

thank you.

what i'd like is a page of thumbnails that are generated from an embedded video stream. when the thumbnail is click on the corresponding video is played through a "lightbox" type of module. here's an example click here . if you click on any of the thumbnails you'll get the idea. the only difference is that the examples on zivtech.com's page are all generated from an apifeed. i'd like to use a series of links i already have. does that make better sense? your help is super appreciated.

warm regards,

ephman

figured out how to make the

ephman - May 6, 2008 - 15:41

figured out how to make the thumbnails by adding div class="lightbox_thumbnail". so that part's figured out. any help with making a gallery would be wonderful.

thanks,

ephman

figured out the view. so i exported it for anybody else.

ephman - May 6, 2008 - 18:46

$view = new view;
$view->name = 'Video';
$view->description = 'video gallery view';
$view->tag = '';
$view->view_php = '';
$view->base_table = 'node';
$view->is_cacheable = '0';
$view->api_version = 2;
$view->disabled = FALSE; // Edit this to true to make a default view disabled initially
$view->display = array();
  $display = new views_display;
  $display->id = 'default';
  $display->display_title = 'Gallery';
  $display->display_plugin = 'default';
  $display->position = '1';
  $display->display_options = array (
  'style_plugin' => 'grid',
  'style_options' =>
  array (
    'columns' => '4',
    'alignment' => 'horizontal',
  ),
  'row_plugin' => 'node',
  'row_options' =>
  array (
    'teaser' => 1,
    'links' => 1,
  ),
  'relationships' =>
  array (
    'field_video_nid' =>
    array (
      'id' => 'field_video_nid',
      'table' => 'node_data_field_video',
      'field' => 'field_video_nid',
      'label' => 'field_video_nid',
      'required' => false,
    ),
  ),
  'fields' =>
  array (
    'field_video_nid' =>
    array (
      'id' => 'field_video_nid',
      'table' => 'node_data_field_video',
      'field' => 'field_video_nid',
      'label' => 'field_video',
      'format' => 'default',
      'multiple' =>
      array (
        'group' => true,
        'multiple_number' => '',
        'multiple_from' => '',
        'multiple_reversed' => false,
      ),
      'relationship' => 'none',
      'link_to_node' => 1,
    ),
  ),
  'sorts' =>
  array (
  ),
  'arguments' =>
  array (
  ),
  'filters' =>
  array (
  ),
  'items_per_page' => 10,
  'use_more' => 0,
);
$view->display['default'] = $display;
  $display = new views_display;
  $display->id = 'page';
  $display->display_title = 'Page';
  $display->display_plugin = 'page';
  $display->position = '2';
  $display->display_options = array (
  'defaults' =>
  array (
    'access' => true,
    'title' => true,
    'header' => true,
    'header_format' => true,
    'header_empty' => true,
    'footer' => true,
    'footer_format' => true,
    'footer_empty' => true,
    'empty' => true,
    'empty_format' => true,
    'use_ajax' => true,
    'items_per_page' => true,
    'offset' => true,
    'use_pager' => true,
    'pager_element' => true,
    'use_more' => true,
    'distinct' => true,
    'link_display' => true,
    'style_plugin' => true,
    'style_options' => true,
    'row_plugin' => true,
    'row_options' => true,
    'relationships' => true,
    'fields' => true,
    'sorts' => true,
    'arguments' => true,
    'filters' => true,
  ),
  'relationships' =>
  array (
  ),
  'fields' =>
  array (
  ),
  'sorts' =>
  array (
  ),
  'arguments' =>
  array (
  ),
  'filters' =>
  array (
  ),
  'path' => 'gallery',
);
$view->display['page'] = $display;

=-=

VeryMisunderstood - May 6, 2008 - 20:18

I added code tags around view code in above comment

using code tags is benefical when posting code snippets of any sort.
_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )

 
 

Drupal is a registered trademark of Dries Buytaert.