diff --git a/views_slideshow.theme.inc b/views_slideshow.theme.inc index 3f4a037..0f9aef2 100644 --- a/views_slideshow.theme.inc +++ b/views_slideshow.theme.inc @@ -143,7 +143,7 @@ function _views_slideshow_preprocess_views_view_slideshow(&$vars) { foreach ($weight as $location => $order) { if ($options['widgets'][$location][$widgetTypeId]['enable']) { // If hide on single slide and only a single slide skip rendering. - if ($options['widgets'][$location][$widgetTypeId]['hide_on_single_slide'] && $slide_count < 2) { + if ($options['widgets'][$location][$widgetTypeId]['hide_on_single_slide'] && $slide_count <= 1) { continue; } $widgetWeight = ($options['widgets'][$location][$widgetTypeId]['weight'] > count($widgetTypes)) ? count($widgetTypes) : $options['widgets'][$location][$widgetTypeId]['weight'];