La plantilla no te deja subir una imagen que no tenga una anchura y altura determinada en píxeles y te pide recortarla (Crop).
Si quieres evitar tener que recortar tu imagen ve al archivo functions.php de tu plantilla, busca la función add_theme_support( ‘custom-header’ ) y borra los valores de altura y ancho:
Código sin editar
[php]
add_theme_support( ‘custom-header’, array(
‘header-selector’ => ‘.site-title a’,
‘header-text’ => false,
‘height’ => 100,
‘width’ => 340,
) );
[/php]
código editado :
/*How to skip logo cropping in header or logo upload image */
[php]
add_theme_support( ‘custom-header’, array(
‘header-selector’ => ‘.site-title a’,
‘header-text’ => false,
‘height’ => ”,
‘width’ => ”,
) );
[/php]
Fuente: https://www.wptaskforce.com/skip-logo-cropping-header-upload-image-genesis-framework/, autor: D3vel0pmEnt