Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Happy Holi to all...

I have a repeatable region of images. I am using the one of the images from repeatable region to be display in <cms:pages masterpage='name.php' >...</cms:pages>

I want to display only one image of the many that have been uploaded throught the repeatable region.

I have tried the following code:
Code: Select all
<cms:show_repeatable 'pp_gallery' startcount='1'>
                                <cms:if k_count ge '1'>
                              <img src="<cms:show pp_gallery_images />" />
                                </cms:if>
                                </cms:show_repeatable>


I just want to display one image from the repeatable region on the other template where i am using the <cms:pages> concept.

How can this be done?

Regards,
GenXCoders
Image
where innovation meets technology
Problem Solved:

Code: Select all
<cms:show_repeatable 'pp_gallery'>
     <cms:if k_count le '1'>
          <img src="<cms:show pp_gallery_images />" />
     </cms:if>
</cms:show_repeatable>
Image
where innovation meets technology
2 posts Page 1 of 1