Magento – remove extra price from dropdown in configurable product

configurable-productmagento-1.9

please see here enter image description here

how to remove that from drop-down?
while at the same time if we choose this option the original price will change as well.

Best Answer

in order to remove that additional price entirely you have to over write functionality of below script:

/app/code/core/Mage/Catalog/Block/Product/View/Options/Type/Select.php

GO to line number : 70 and change the code with this code snippet :

From :

$select->addOption(
            $_value->getOptionTypeId(),
            $_value->getTitle() . ' ' . $priceStr . '',
            array('price' => $this->helper('core')->currencyByStore($_value->getPrice(true), $store, false))
        );

To :

$select->addOption(
            $_value->getOptionTypeId(),
            $_value->getTitle() /*. ' ' . $priceStr . ''*/,
            array('price' => $this->helper('core')->currencyByStore($_value->getPrice(true), $store, false))
        );

you will find workaround this block, hope it will help