Your block is \Magento\Catalog\Block\Product\View\Gallery
inside your template gallery.phtml:
$jsonGallery = $block->getGalleryImagesJson(); $arrayJsonGallery = json_decode($jsonGallery, true); $newArrayJsonGallery = array(); <?php foreach ($arrayJsonGallery as $_image): ?> <?php if($_image['type'] != 'video'): ?> <?php $newArrayJsonGallery[] = $_image ;?> <?php endif; ?> <?php endforeach; ?>
Done
Comments