Inline Images inside ACF Repeater

WordPress Under Review
12 March, 2025 12:50:50
wdd
Topics: 3
Messages: 9
Hi there,

I am able to insert a dynamic image in a HTML box, and type content next to it (Image 1) with the following code:

<img src='[acf field="dossier_logo_icon" post_id="option" meta="true" attachment_image_url="true" size="full"]' width='16px' height='auto'/>Hello World</br>

However the minute I put it within an ACF repeater is doesn't show.
[e2pdf-acf-repeater field="holiday_price_included_options" post_id="option"]
<img src='[acf field="dossier_logo_icon" post_id="option" meta="true" attachment_image_url="true" size="full"]' width='16px' height='16px'/>[acf field="text"]
[/e2pdf-acf-repeater]

I have even tried to create a table format to work around this but no luck either.
<table>
[e2pdf-acf-repeater field="holiday_price_included_options" post_id="option"]
<tr>
<td width="30px" style="height: 30px; vertical-align: top;"><img src='[acf field="dossier_logo_icon" post_id="option" meta="true" attachment_image_url="true" size="full"]' width='16px' height='16px'/></td>
<td>[acf field="text"]</td>
</tr>
[/e2pdf-acf-repeater]
</table>

Image attached of what I am trying to do. (Image 2)
12 March, 2025 14:20:11
E2Pdf
Support
Topics: 7
Messages: 3439
Hello,

It seems the issue is related to using a non-repeater field within an ACF repeater loop. We are currently investigating a possible solution and will notify you shortly once we have an update.
We would really appreciate your feedback at WordPress.org!
12 March, 2025 14:55:06
wdd
Topics: 3
Messages: 9
Ah! Thank you so much.

Are you working on a specific timeline?

Thanks
Suzie
12 March, 2025 14:56:31
E2Pdf
Support
Topics: 7
Messages: 3439
Please, try updating the plugin to the latest RC version (1.27.19): https://e2pdf.com/docs/install#rc-version and add the repeater="false" attribute to your image ACF field shortcode as follows:

[acf field="dossier_logo_icon" post_id="option" repeater="false"]

* It should prevent it from being requested as a "sub-field"
We would really appreciate your feedback at WordPress.org!
13 March, 2025 05:43:58
wdd
Topics: 3
Messages: 9
Hi there,

Thanks so much that has done the trick!

Thanks
Suzie