6.x-2.x-dev, I picked this up in another thread, thanks strands

The output for the controls and the image counter in ThumbnailHover mode is in the wrong order if you choose "Bottom" for either of them.

This patch for views_slideshow/contrib/views_slideshow_thumbnailhover/views-slideshow-thumbnailhover.tpl.php fixes that. I hope this is how you like it.

--- views-slideshow-thumbnailhover.tpl.php	2009-11-16 21:55:19.000000000 -0800
+++ views-slideshow-thumbnailhover-NEW.tpl.php	2009-11-28 15:42:36.000000000 -0800
@@ -31,11 +31,11 @@
     $output .= $view_teasers;
   }
   if ($options['thumbnailhover']['controls'] == 2) {
-    print theme('views_slideshow_thumbnailhover_controls',$id, $view, $options);
+    $output .= theme('views_slideshow_thumbnailhover_controls',$id, $view, $options);
   }
   
   if ($options['thumbnailhover']['image_count'] == 2) {
-    print theme('views_slideshow_thumbnailhover_image_count', $id, $view, $options);
+    $output .= theme('views_slideshow_thumbnailhover_image_count', $id, $view, $options);
   }
   print $output;

Comments

redndahead’s picture

Status: Active » Needs review

Marking needs review to look at it later. There have been some changes in this area so it may be fixed already.

redndahead’s picture

Priority: Normal » Critical
redndahead’s picture

Status: Needs review » Fixed

This has been fixed in a previous commit.

Status: Fixed » Closed (fixed)

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