Hi Alex,
i mean the fieldx with the upload image
I have set fieldx with a group, witch contains a field of the type external content to get the Link. You can see it here for the Images of the Landingpages of the categories
kunden.projektwaterkant.de/seiten/maschi...p;id=6&Itemid=14
So i will get an dropdown in the backend, witch list me all my Articles (see Screenshot)
I have integreated it in my template this way
<?php if (sizeof( $jSeblod->produktbilder ) > 3) {
for ( $i = 0, $n = sizeof( @$jSeblod->produktbilder ); $i < $n-1; $i++ ) {?>
<div id="imagecontainer" style="float:left"><a href="<?php echo @$jSeblod->produktbilder[$i]['produktlink']['art_link']->value; ?>" target="_self"><img src="<?php echo @$jSeblod->produktbilder[$i]['produktbersicht_bild']->thumb1; ?>" title="<?php echo @$jSeblod->produktbilder[$i]['bildtitel']->value; ?>" ></a></div>
<?php }
}
?>
I have modified the sizeof for my needs, because i have two fields minimum an when i set the original code i've got an empty field at the end every time.
Hope this will help you