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";
}
}
?>