Hej there,
I have a ACF Image Field, returning Image ID, used at a definied taxonomy. The uploaded images do not get resized. Do you have any idea what the problem is?
When using the gallery ACF for custom-posts the resize is working perfecty and all images are stored in the upload folder in different size.
$attachment_id = get_field('icon', $termid_kategorie);
$size = "thumbnail"; // (thumbnail, medium, large, full or custom size)
$icon = wp_get_attachment_image_src( $attachment_id, $size );
This code returns the original sized image.
Thank you for your help!
It’s possible that another plugin is causing an issue, Do you have any plugins installed that effect the images on your site? Can you deactivate other plugins to see what happens?
Thank you for your help. I already tried this. In the end I found out that the php library to resize the images “disappeared” from the server. Now everything works fine!