svg upload is working after adding
function cc_mime_types( $mimes ){
$mimes[‘svg’] = ‘image/svg+xml’;
return $mimes;
}
add_filter( ‘upload_mimes’, ‘cc_mime_types’ );
to functions.php
(otherwise it is blocked for “security reasons”)
svg render works fine after manually changing size of an image!
Ok