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)