Here is the screen shot of mapping of my FCE:
I can refer 'Caption' field by 'field_caption' from the typoscript of 'Link' field.
Here is the typoscript for that:
10 = TEXT
10.field = field_caption
How to refer the 'Image' field which is inside a container field 'Image and alternate text' From the typoscript of 'Link' field?
I tried to refer it directly by using 'field_image', but it is not working.
here is the screen shot:
Markup I am trying to map is:
<a href="resources/img/site/demo1.jpg">
<img src="resources/img/site/demo1.jpg" alt="alternate text" />
<div class="flex-caption">
<p>caption text</p>
</div>
</a>