To display multiple images for a product, you can use the extra image fields in the product record to hold the references to the extra images.
You just need to upload your product images in the “Additional Image 1 – 5 fields” under the edit product page in control panel.
If you are using the Plus or Deluxe Pacs, the code is already included in the template for dynamic image swapping. If using the Value or LITE Pacs, then you will need to add the code to the template to display the images.
You can add the code using an HTML Editor or you can modify using the built in Template Editor at:
Website » Template/CSS Manager
The code below needs to be added to the template file
tmp_product.htm under “templates\standard” folder is designed to
display the extra images.
$ <div><img
src="[extraimage1]" border="0" alt="[translate cname]"
/></div>
$ <div><img src="[extraimage2]" border="0" alt="[translate cname]" /></div>
$ <div><img src="[extraimage3]" border="0" alt="[translate cname]" /></div>
$ <div><img src="[extraimage4]" border="0" alt="[translate cname]" /></div>
$ <div><img src="[extraimage5]" border="0" alt="[translate cname]" /></div>