Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 2:
Setting up an image gallery

 

 


terryally
User

May 22, 2009, 9:55 AM

Post #1 of 3 (1766 views)
Shortcut
Setting up an image gallery Can't Post

Hi,

I am getting an error message on my page: [unknown placeholder $article.imageGallery$]

On the articlePage template there is the code:


Code
<!-- templateIf : $article.imageGallery$ ne "" --> 
<div style="width:525px;">

<!-- templateInsert : $article.imageGallery$ -->

<!-- templatecell : article.imageGallery.row -->
<div style="float:left; margin: 0px 5px 5px 0px; padding:0;">
<a href="$file.webUrl$"><img src="$file.thumbnailWebUrl$" border="1" alt="$file.title:htmlEncoded$" width="$file.thumbnailWidth$" height="$file.thumbnailHeight$" class="galleryImage"></a>
<!-- templateIf : $file.caption$ ne "" -->
<br style="clear: both;" />
<div class="image_caption" style="width:$file.thumbnailWidth$px;">$file.caption$</div><br><br style="clear: both;" />
<!-- /templateIf -->
</div>
<!-- /templatecell : article.imageGallery.row -->


How can I create this image gallery? In the Create Article function there is the Upload Images function. Is this what I would use to create the image gallery??

Thanks
Terry


Donna
Staff / Moderator


May 22, 2009, 3:28 PM

Post #2 of 3 (1753 views)
Shortcut
Re: [terryally] Setting up an image gallery [In reply to] Can't Post

Hi Terry,

If you're getting that error, then you've either deleted or renamed the imageGallery field in the database editor. By default, that's an image upload field used to create an image gallery.

You can recreate it by just making a new field called "imageGallery", and setting it as an upload field with "List of Attached Files" set as the type. :)

Donna

--
support@interactivetools.com


terryally
User

May 22, 2009, 11:54 PM

Post #3 of 3 (1747 views)
Shortcut
Re: [Donna] Setting up an image gallery [In reply to] Can't Post

Thanks.