Support

Account

Home Forums General Issues Add Image Size to another ACF Field Reply To: Add Image Size to another ACF Field

  • Hi @neodjandre

    I’m sorry I thought you were using the PRO version. In this case, you should be able to use the text field instead.

    Like I said before, If you need the medium image to be an individual image object in the media library, you need to upload it to your site programmatically. Unfortunately, this kind of topic is more related to WordPress and PHP.

    Also, could you please let me know what’s wrong with calling the image like this:

    $image = get_field('fl_image');
    echo $image['sizes']['medium'];

    I think it’s simpler than what you were trying to do and it will save spaces because it won’t create redundant images.

    Thanks 🙂