Hello, I'm trying to set up my image gallery to show the contents of a named folder in one html page, and another folder in another page. So far I have added this to the top of each page…
<cms:template title='Gallery' clonable='1' dynamic_folders='1' gallery='1' >
<cms:editable
name="gg_image"
label="Image"
desc="Upload your main image here"
width="500"
show_preview='1'
preview_height='200'
type="image"
/>
<cms:editable
name="gg_thumb"
assoc_field="gg_image"
label="Image Thumbnail"
desc="Thumbnail of image above"
width='200'
height='200'
enforce_max='1'
crop='1'
type="thumbnail"
/>
</cms:template>
and this where I want the contents of a folder displayed….
<cms:pages masterpage="props.php" include_subfolders='0' k_folder_name="category-1" >
<a href="<cms:show k_page_link/>" class="transition">
<img src="<cms:show gg_thumb/>" alt="<cms:show image_alt/>"/>
</a>
</cms:pages>
Can someone tell me what I'm doing wrong?
Many Thanks
Rob
<cms:template title='Gallery' clonable='1' dynamic_folders='1' gallery='1' >
<cms:editable
name="gg_image"
label="Image"
desc="Upload your main image here"
width="500"
show_preview='1'
preview_height='200'
type="image"
/>
<cms:editable
name="gg_thumb"
assoc_field="gg_image"
label="Image Thumbnail"
desc="Thumbnail of image above"
width='200'
height='200'
enforce_max='1'
crop='1'
type="thumbnail"
/>
</cms:template>
and this where I want the contents of a folder displayed….
<cms:pages masterpage="props.php" include_subfolders='0' k_folder_name="category-1" >
<a href="<cms:show k_page_link/>" class="transition">
<img src="<cms:show gg_thumb/>" alt="<cms:show image_alt/>"/>
</a>
</cms:pages>
Can someone tell me what I'm doing wrong?
Many Thanks
Rob