Sure! Let me try explaining better. Try this:
- Set your Gallery field return format to “Image Array”. This will allow you to retrieve all the attachment meta data WordPress makes available on the image.
- Add a Dynamic Content Looper provider set to
{{dc:acf:post_field field="gallery"}}
- Use
{{dc:looper:field key="alt"}}
to access alt text - Use
{{dc:looper:field key="sizes.medium"}}
to get the medium thumbnail - Inside your consumer, add a text element with this content:
{{dc:looper:debug_consumer}}
. This will let you see all the data you have available. Then the corresponding key can be used with the syntax above (alt text, thumbnail, etc.) to get other bits of information.