Thanks.
Not following about the ORDER BY date DESC clause. Where would I put that?
For the images, I'm referring to the thumbnails up top. For example:
http://www.reeftalk.com/reviews/show...p/product/1762
(the island aquatics images up top in the product, two images, one with the 'supersize' link under it).
We want to experiment with only showing one image regardless of how many may be available.
I think the portion of the code in showproduct.tmpl is:
<tr>
<td class="{$Style['small']}" valign="top" align="center">$file1thumb</td>
<td class="{$Style['small']}" valign="top" align="center">$file2thumb</td>
<td class="{$Style['small']}" valign="top" align="center">$file3thumb</td>
</tr><tr>
<td class="{$Style['small']}" valign="top" align="center">$file4thumb</td>
<td class="{$Style['small']}" valign="top" align="center">$file5thumb</td>
<td class="{$Style['small']}" valign="top" align="center">$file6thumb</td>
</tr>
So if we only wanted to show one image, we could remove the relevant lines from above, correct? Do the numbers correspond to the order with which the images are uploaded? So if wanted to always use an image associated with the sixth image uploaded, we'd keep file6thumb?
Thanks!