What I do wrong ? I add field Gallery , but where it sholud be in Admin Form or Content. If I add it to Content and then add Fieldx then in Admin Form I have to fields for upload image. One is this field named "Gallery" (field type Image) and second is Fieldx (type field x and Typography Image ). I thin I don't understand point 1 and 2 . I read earlier this topic
www.seblod.com/support/forum/Getting-Sta...1-Image-Gallery.html
and this tutorial
www.seblod.com/support/documentation/seb...th-fieldx-field.html
and
in forum topic is written
www.seblod.com/support/forum/Getting-Sta...1-Image-Gallery.html
1.create a field image and set the folder where you will upload your images (for example "images/example1/").
2.Create a "FieldX" and set the "Field(Form)" with the name of your image field,
Ad.1 So I assume I need to create just image field and set its parametres, but should I add it to Admin Form or Content ?
Ad.2 Ok if I did correct point one, now I should add Fieldx in "Field (Form) *" parameter of Fieldx I should write the name of image field created in step 1. Fieldx should be in Content as I see in image here
www.seblod.com/support/forum/Getting-Sta...1-Image-Gallery.html
So mine questions are

.
1.Did I created good Image Field ?
2.Where this image field I should add , Admin Form or Content ?
3.What I should see in admin form ?
4.Can I show this images in article view following this tuorial because
www.seblod.com/support/documentation/seb...eldx-and-groupx.html
Because when I tried this code
<?php foreach($cck->get( 'fieldx_galeria' )->value as $gx){ ?>
<p><img src="<?php echo $gx['galeria']->value; ?>" alt="<?php echo $gx['galeria']->image_alt; ?>" title ="<?php echo $gx['galeria']->image_title; ?>" /></p>
<p><?php echo $gx['text_field']->value; ?></p>
<p><?php echo $gx['second_text_field']->value; ?><p>
<?php } ?>
I got message
<b>Fatal error</b>: Cannot use object of type stdClass as array in
On line 2
Where "fieldx_galeria" is my FieldX and "galeria" is my image field created in step1.