Question

How do I get product ID and product attribute at magento/module-catalog/block/product/view/gallery.php?

Please help, I need to do some image filtering by product custom attribute with the image caption.

thanks

Was it helpful?

Solution

You can use getProduct() function directly in this file because that extends below file which contain this function.

vendor/magento/module-catalog/Block/Product/View/AbstractView.php

You can use below line to get Product ID in that file..

<?php $productId = $this->getProduct()->getId(); ?>

And you can get attribute value using this line

<?php $this->getProduct()->getAttributeText('attribute_code'); ?>

You can replace your attribute code with attribute_code.

Hope this will help you!

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top