Can not upload png images
Why can’t I upload a png image?
JPEG images are fine.
I tested uploading a PNG, and everything works for me.
Can you check if the file is too large?
Have you tried downloading it with all other plugins disabled?
Artur Abakarov I tried disabling plugins and same issue.
Image sizes were less then 350kb
Probably you need to add png (or any other image format) as allowed file format - try to test the below code snippet on you staging site:
function my_mime_types($mimes) {
// Allows PNG files
$mimes['png'] = 'image/png';
return $mimes;
}
add_filter('upload_mimes', 'my_mime_types');
Adam George It seems site-specific. Could you please create a support ticket?