Question

I will trying to get the attributes values but i can't do this values ?

enter image description here

Was it helpful?

Solution

<?php 
$attribute = $product->getResource()->getAttribute('package_quantity');
if (empty($attribute->getFrontend()->getValue($product))) {
}else{
   echo "<strong>Package Quantity : </strong>",$attribute->getFrontend()->getValue($product); 
}

?>

OTHER TIPS

You can get the attribute value and attribute code as :

Attribute Value :

<?php echo $_product->getResource()->getAttribute('attribute_code')->getFrontend()->getValue($_product); ?>

Attribute Label :

<?php echo $_product->getResource()->getAttribute('attribute_code')->getStoreLabel();
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top