I am trying to get a list of images (with image cache) and title. Any one experience how to theme that? By default the accordion view module only allows one of the two (title or image) to be visible in the listed headers (that trigger the accordion effect when you click it). The development module's Themer info is not of much use since the accordion effect breaks it. I tried to create:
views-view-accordion--page.tpl.php:
<div class="item-list views-accordion <?php print $views_accordion_id ?>">
<?php if (!empty($title)): ?>
<h3 class="<?php print $views_accordion_id ?>"><?php print $title; ?></h3>
<?php endif; ?>
<div id="<?php print $views_accordion_id ?>">
<?php foreach ($rows as $id => $row): ?>
<div class="<?php print $classes[$id] ?>"><?php print $row ?></div>
<?php endforeach; ?>
</div>
</div>But I don't know how to add the image cache image.
