pardipbhatti8791
1/30/2016 - 8:21 PM

how to get attribute value in magento ?

how to get attribute value in magento ?

// Follow the below code

<?php if($attributes = $_product->getResource()->getAttribute('finish')) {  
    if($attributes->getFrontend()->getValue($_product) != "No") { 
      echo " - " . $attributes->getFrontend()->getValue($_product); 
      } else { 
        echo "No Attribute Value Found"; 
        } 
      }
  ?>