Cyclone Slider 2 version 2.5.0 Notes
-
UPGRADING
On upgrade please resave your slideshows to update the template CSS and JS.Some stuff you can do with cyclone slider:
REFRESH THUMBNAILS
Add this to functions.phpfunction cycloneslider_thumbnailer_params($params){ $params['fresh_resize'] = true; return $params; } add_filter('cycloneslider_thumbnailer_params', 'cycloneslider_thumbnailer_params');Go view your slideshow so the code above will run. Your images will be regenerated.
Remove the code above, or else it will affect performance.DISABLE AUTOHEIGHT
Add this to functions.phpfunction cyclone_cycle2_settings($array) { $array['data-cycle-auto-height'] = 0; return $array; } add_action( 'cyclone_cycle2_settings_array', 'cyclone_cycle2_settings');This will affect all slideshows
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Cyclone Slider 2 version 2.5.0 Notes’ is closed to new replies.