As image count can be put on top in the Views UI, please add image counter on top in the template:

So

<?php if ($controls_top || $image_count_top || $breakout_top): ?>
  <div class="views-slideshow-controls-top clear-block">
    <?php print $controls_top; ?>
    <?php print $pager_top; ?>
    <?php print $breakout_top; ?>
  </div>
<?php endif; ?>

<?php print $slideshow; ?>

<?php if ($breakout_bottom || $controls_bottom || $image_count_bottom): ?>
  <div class="views-slideshow-controls-bottom clear-block">
    <?php print $breakout_bottom; ?>
    <?php print $controls_bottom; ?>
    <?php print $image_count_bottom; ?>
  </div>
<?php endif; ?>

should be ...

<?php if ($controls_top || $image_count_top || $breakout_top): ?>
  <div class="views-slideshow-controls-top clear-block">
    <?php print $controls_top; ?>
    <?php print $image_count_top; ?>
    <?php print $pager_top; ?>
    <?php print $breakout_top; ?>
  </div>
<?php endif; ?>

<?php print $slideshow; ?>

<?php if ($breakout_bottom || $controls_bottom || $image_count_bottom): ?>
  <div class="views-slideshow-controls-bottom clear-block">
    <?php print $breakout_bottom; ?>
    <?php print $controls_bottom; ?>
    <?php print $image_count_bottom; ?>
  </div>
<?php endif; ?>

Thanks...

CommentFileSizeAuthor
#3 842690-image_count-1.patch948 bytesredndahead
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

intyms’s picture

Status: Active » Needs review
redndahead’s picture

Status: Needs review » Fixed

Committed. Thanks a lot.

redndahead’s picture

FileSize
948 bytes

Here's the patch

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.