Magento 1.9 – How to Add Video to Product Image Gallery

magento-1.9product-images

I have created product attribute name is video. But, I want to display video in product image gallery in product page.

Best Answer

By using , you can get that data & use this code in your view.phtml file

<iframe width="100%" height="auto" src="<?php echo $_product-> 
 getData('video'); ?>" frameborder="1" allowfullscreen></iframe>

Like this :

enter image description here

Related Topic