I am trying to create an image slider on the PROD page that pulls ALL images for each product. I'm looking for something like this but am not sure of the correct MIVA language. Basically, for each image a div or slide will be created with that image in it.
<div class="imageslider">
<mvt:foreach iterator="image" array="images">
<div><img src="&mvt:product:image;" alt="&mvt:product:name;" /></div>
</mvt:foreach>
</div>
Has anyone done this?
<div class="imageslider">
<mvt:foreach iterator="image" array="images">
<div><img src="&mvt:product:image;" alt="&mvt:product:name;" /></div>
</mvt:foreach>
</div>
Has anyone done this?
Comment