質問

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

役に立ちましたか?

解決

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!

ライセンス: CC-BY-SA帰属
所属していません magento.stackexchange
scroll top