I try to display all image in product page like this
I have a loop like this:
<?php
foreach ($_product->getData('media_gallery')['images'] as $image)
{
echo '<img src="' . $image['file'] . '" />';
}
?>
The link isn't the right path and I don't know how to find the right one.
Does anyone have an idea ?
Thanks.