Hello Kriesi Team,
please see for example the blog page (see in private content).
The featured image is cropped to a maximum height. What must I do, in order to show the full sized image in full height?
Best regards,
Martin
Hey Martin,
Thank you for the inquiry.
You may need to adjust the maximum dimension of the entry_with_sidebar thumbnail. Add this code in the functions.php file:
function avf_customization_modify_thumb_size( $size ) {
$size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
$size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
return $size;
}
add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
Then use the this plugin to regenerate the thumbnails.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Ismael