How to display all images of product in magento

2:42 PM

How to display all images of product in magento



 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
<?php 
    $_images = Mage::getModel('catalog/product')->load($_product->getId())->getMediaGalleryImages();
 ?>
<?php 
   if($_images){?>          
  <?php  $i=0; foreach($_images as $_image){ $i++;?>
  <a href="#">
    <img src="<?=$this->helper('catalog/image')->init($_product, 'image', $_image->getFile()); ?>"alt="<?=$this->htmlEscape($_image->getLabel());?>" title="<?=$this->htmlEscape($_image->getLabel());?>" />
   </a>             
<?php  } ?>
<?php  } ?>

I am Web Developer and Web Designer. Also Part Time Blogger. Love To Code in HTML, CSS, JS, jQuery, Bootstrap, PHP, WordPress, Magento.

RELATED POSTS

Previous
Next Post »