Change the text “Choose an option…” on Magento product page
I created a configurable product, it has three option: color , size and style . Now in product page, each option has the default text " Choose an Option... " in dropdown, but I want the text should be " Select color ", " Select size " and " Select style ". I edited function getJsonConfig() in app\code\core\Mage\Catalog\Block\View\Type\Configurable.php From: 'chooseText' => Mage::helper('catalog')->__('Choose an Option...'), To: 'chooseText' => ('Select ').$attribute->getLabel(), And edit line 39 of the file frontend/base/default/template/catalog/product/view/type/options/configurable.phtml to: