cancel
Showing results for 
Search instead for 
Did you mean: 

Display custom attribute value inside Image!

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Display custom attribute value inside Image!

Hi, all working on this problem last 5 days. I have a problem to show attribute in image_with_borders.phtml or grid.phtml same error appear (blak page with number 1. and first image of product on home page).

 

Same code in gallery.phtml working great, now i don't understand where is fault .

 

<div class="custom_gallery_banner">
            <?php 
            $_product = $block->getProduct();
            $_getMyAttr = $_product->getResource()->getAttribute('difficulty');
            // Get Value
            $attrTestValue = $_getMyAttr->getFrontend()->getValue($_product);
            // Get Label
            $attrTestLabel = $_getMyAttr->getStoreLabel();

            $string = $attrTestValue;
            //$string = str_replace(',', ' /', $string);
            //echo $string;
            echo "<span>" . str_replace ("," , "</span><span> /</span><span>" , $string) . "</span>";

            
            echo nl2br("\n");
            echo ("<p>$attrTestLabel</p>");
            ?>
        </div>

Thanks

5 REPLIES 5

Re: Display custom attribute value inside Image!

hi @Ajtimstoj

 

 I think problem with attribute loading .  Either you set the attribute show in listing from backend from attribute setting. or you have to load product to get all attribute.

$_product = $block->getProduct();
$objectManager
= \Magento\Framework\App\ObjectManager::getInstance();
$
_product= $objectManager->create('Magento\Catalog\Model\Product')->load($_product->getId());

 

Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

Re: Display custom attribute value inside Image!

Hi, yes i set the attribute used in product Listing.

image.png

 

I insert code but the result is the same:
image.png

 

 Blank screen with number 1.

image.png

 

 

Re: Display custom attribute value inside Image!

hi @Ajtimstoj

 

 after testing my code i realized  that will not work for you here is alternative not best but will for you

$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 
$_product= $objectManager->create('\Magento\Catalog\Model\ResourceModel\Product\Collection');
$_product->addAttributeToSelect(array('*'));
$_product->addAttributeToFilter('name', ['eq' => $block->getLabel()])->getFirstItem();

After that add your code if this is not work then you have to load the product again.

Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

Re: Display custom attribute value inside Image!

Still same error shows.

image.png

 

image.png

 

 

 

I write different code:
image.png

 
With productId (assignment by value) 2.

image.png Now working to all products show same attribute:

image.png


 But when i say give me value of attribute the result is blank screen too.

Re: Display custom attribute value inside Image!

hi @Ajtimstoj

 

Here is last solution from my side

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$_product= $objectManager->create('\Magento\Catalog\Model\ResourceModel\Product\Collection');
$_product->addAttributeToSelect(array('*'));
$_product->addAttributeToFilter('name', ['eq' => $block->getLabel()]);



$_product = $objectManager->create('Magento\Catalog\Model\Product')->load($_product->getFirstItem()->getEntityId());

Hope this will work for you.

Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti