by Jim » Mon Dec 13, 2010 3:35 pm
By "product page" I assume you mean a store page with multiple products on it?
You can include additional image in text fields such as the product description by including the url to the image, for example.
<img src="http://yourdomain.com/media/imagename.gif" alt="alt text for image" >
If your version of ShopSite has extra product field you could also use those to contain images. However, to use the extra product fields you need to have a custom template that includes the code to display those fields. Your template could contain something like this to generate the links
Assuming that extra product field1 contains just the image name like image.gif or image.jpg and extra product field 2 contains the alt text for the image.
<img src="[-- Store.output_url --]/media/[-- product.field1 --]" alt="[-- product.field2 --]>