Frage

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

enter image description here

War es hilfreich?

Lösung

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

?>

Andere Tipps

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();
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top