Copia y pega esta función de PHP en Code Snippets para no recortar las imágenes del módulo blog de Divi
// Begin stop cropping featured image in Divi Blog Module
function ld_blog_crop_image_width($width) {
return 9999;
}
function ld_blog_crop_image_height($height) {
return 9999;
}
add_filter( ‘et_pb_blog_image_width’, ‘ld_blog_crop_image_width’ );
add_filter( ‘et_pb_blog_image_height’, ‘ld_blog_crop_image_height’ );// End stop cropping featured image in Divi Blog Module