Hello
I have the following view:
<wpv-loop>
<div class="sfc-campaign-images">
<div class="sfc-campaign-image sfc-campaign-single-image">
<a href="[wpv-post-url]"><img align="top" class="sfc-campaign-image-left" src="[types field='channel_img' output='raw'][/types]" /></a>
</div>
<div class="sfc-campaign-image sfc-campaign-single-image">
<a href="[wpv-post-url]"><img align="top" class="sfc-campaign-image-right" src="[types field='channel_img' output='raw'][/types]" /></a>
</div>
</div>
</wpv-loop>
Instead of showing the image block 2 times I'd like to populate the first image with the first post that is connected to the post and then the second image with the second post that is connected to the post?
Do you know what I mean?
So that it looks something like this:
<div class="sfc-campaign-images">
<div class="sfc-campaign-image sfc-campaign-single-image">
</div>
<div class="sfc-campaign-image sfc-campaign-single-image">
</div>
</div>
Thanks for your help,
Nick
My issue is resolved now. Thank you!