Hi,

I need to have multiple galleries on one page. I attached the corresponding gallery to its node using views_attach, it works fine for me in the full node display (see sreenshot), like proposed here: http://drupal.org/node/799184
I couldn't succeed with the second possibility, attaching a block to the node, but maybe that wouldn't make a difference. Or how exactly should i do it?

But then i build a simple view listing many node in full-node-display one one page, using unformatted, node row-style design. It doesn't display correctly (see other screenshot).

I tried with the stable version 6.x-1.0-rc3 as well with 6.x-1.x-dev.

Thanks for caring, varac

Comments

acouch’s picture

Status: Active » Closed (fixed)

The galleriffic itself does not support this.

gmclelland’s picture

FYI.. It looks like it does support multiple galleries on a single page.

Support for multiple galleries per page

To do this you would need separate identifiers:
http://code.google.com/p/galleriffic/issues/detail?id=15

My rough guess is maybe you could modify the view template

from:
<div id="thumbs">...
to:
<div class="thumbs galleriffic-nameofview-display-name">...

Then in views_galleriffic.js where you initialize galleriffic, you could loop over all the items that have a class of galleriffic-*

Just thinking out loud.