media-7.x-1.x-dev(Mar 6)
media_gallery- 7.x-1.0-beta3

when I view the gallery each "media-gallery-thumb" can not show like other theme.
That is the gallery set images show in X ROW Y COLUMN.
But in "Pixture Reloaded" it only show 1 column.

Is this a bug?

Comments

sneeuwgetsie’s picture

I have this problem. Would be nice if this could be fixed

Jeff Burnz’s picture

Component: Miscellaneous » Code
Category: support » bug

I'm waiting for a more stable release of Media module. Lets mark this as a bug for now and come back to it.

Anatoli777’s picture

I also have this problem.

komal.savla’s picture

Hi,

This is causing because <div class= "field-items"> is not present in field.tpl.php of Adaptive theme.
So in order to fix this issue, add the following code in field.tpl.php of Adaptive theme (i.e adaptivetheme/adaptivetheme/templates)

<div class="field-items">   /* Added this line */
  <?php foreach ($items as $delta => $item) : ?>
    <div class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>><?php print render($item); ?></div>
  <?php endforeach; ?>
</div>        /* Added this line */

Thanks,
Komal

lamachine’s picture

Komal's fix doesn't work for me.
The only file I found in daptivetheme/adaptivetheme/templates is field.tpl.php.txt .
I've appended the code and nothing's changed. Renaming field.tpl.php.txt to field.tpl.php doesn't help either.