Support

Account

Home Forums ACF PRO Image Resizing of ACF Image Field for Taxonomy not working

Solved

Image Resizing of ACF Image Field for Taxonomy not working

  • 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!

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Image Resizing of ACF Image Field for Taxonomy not working’ is closed to new replies.