Hi,
you can change slider size by add this to functions.php:
add_filter(‘kopa_get_image_sizes’,’custom_slider_size’);
function custom_slider_size($size){
//if you use blog-1 to blog-4
$size[‘flexslider-image-size’] = array(500, 500, TRUE, __(‘Flexslider Post Image (Kopatheme)’, kopa_get_domain()));
//if you use blog-5
$size[‘gallery-image-size’] = array(500, 500, TRUE, __(‘Flexslider Post Image (Kopatheme)’, kopa_get_domain()));
return $size;
}
2 numbers in array is width and height of images in slider, you can change it.
after all, use plugin Force Regenerate Thumbnail to resize all images
if you have any question, please create a topic in our forum: https://kopatheme.com/forum
Kopatheme Support Team