Hi,
I have some queries related to Additional images, what exactly the utility of these additional images option...
I would like to use the first additional image as the product Image ..is it possible ??
can we display these images on catalog ??
where it save in database and how we can retrieve from ?
Thanks And Regards
Atul khare
Utility of Additional Images
Re: Utility of Additional Images
Additional images provide different looks of the product. For example there could be some different colors for product and also you want the customer to check the front view , rear view etc. In AbleCommerce when you specify additional images for a product, a More Images link will be available on product details just under the basic picture of product.what exactly the utility of these additional images option...
Yes it is doable. You need to put some custom code and update the locations those are showing _Product.ImageUrl with _Product.Images[0].ImageUrlI would like to use the first additional image as the product Image ..is it possible ??
If you want to show all aditional products on the ProductDetails page then please have a look at the following postcan we display these images on catalog ??
viewtopic.php?f=47&t=9026
The all images are stored under Website/Assets/ProductImages folder. The image information will be available to you via Product object. For example on Product Details page you can access these additional imageswhere it save in database and how we can retrieve from ?
Code: Select all
_Product.Images[0].ImageUrl;