I've been reading this thread for days (well it feels like it) looking for a solution to a problem that I have. But first let me give my tip on the following. Problem to follow in next post.
I noticed that many users are having problems with displaying multiple images for a product in the LightBox window. I was also looking into this but needed a quick solution for a demo for a client. I also wanted a solution where you could see multiple images of a product only in the LightBox window. I did not want to clutter my product page with additional images of the product. This is solved by just adding 4 lines of code (plus 1 line for each additional image) at the end of your product description in the admin console. Advantages are;
- no complicated file naming convention, and you can use more meaningful names ie. can use - car.jpg, tire.jpg etc,
- images can be stored in any folder and don't have to be in the same folder,
- very quick and easy,
- don't need to display the additional images on the product page but this does not stop you if you do want to display them.
PHP Code:
<div id="productMainImage" class="centeredContent back">
<script language="javascript" type="text/javascript">
<!--document.write('<a href="images/SecondImage.jpg" rel="lightbox[gallery]" title="This is the second image"></a>')
document.write('<a href="images/some_folder/AnotherPicture.jpg" rel="lightbox[gallery]" title="This is the third image"></a>')//--></script>
</div>
I would like to add that I do not have IH installed. Maybe the pros could comment on this method of displaying additional images.