Question

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

enter image description here

Était-ce utile?

La solution

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

?>

Autres conseils

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();
Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top