I'm trying to add an attribute label to the "Choose an Option" dropdown on the product page , but without hard coding it as I may add other attributes , so for instance i would like to show "Select a size" or Select a Color" .
I have played around and have tried some code from various forums but cant seem to get it to work - any ideas or any suggested extensions
the core code in configurable.phtml is:
<?php
$_product = $this->getProduct();
$_attributes = Mage::helper('core')->decorateArray($this->getAllowAttributes());
?>
isSaleable() && count($_attributes)):?> <dt><label class="required"><em>*</em><?php echo $_attribute->getLabel() ?></label></dt>
<dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
<div class="input-box">
<select name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
<option><?php echo $this->__('Choose Option')?></option>
</select>
</div>
</dd>
<?php endforeach; ?>
</dl>
var spConfig = new Product.Config(getJsonConfig() ?>);
</script>
