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;
| Comment | File | Size | Author |
|---|---|---|---|
| controlsImageCounterOrder4ThumbnailHover.patch | 709 bytes | beatnikdude |
Comments
Comment #1
redndahead commentedMarking needs review to look at it later. There have been some changes in this area so it may be fixed already.
Comment #2
redndahead commentedComment #3
redndahead commentedThis has been fixed in a previous commit.