[plugin: Promotion slider]Thumbnails size filter
-
I have rotator on the front page using thumbnails, default thumbnail size is ‘thumb’ according to documentation. Now, I want thumbnails to be 205x70px and I do following code in functions.php file:
if(!function_exists('my_rotator_thumbnails')) { function my_rotator_thumbnails($thumb_size){ $width = 205; $height = 70; $thumb_size = array($width,$height); return $thumb_size; } add_filter('promoslider_thumb_size','my_rotator_thumbnails',1); }
But it doesnt change anything in slider look, how do I change thumbnail size then? The code inserted in header.php is
<?php echo do_shortcode('[promoslider category="fp_rotator" time_delay="9" height="304px" width="950px" display_nav="thumb"]') ?>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘[plugin: Promotion slider]Thumbnails size filter’ is closed to new replies.