Magento Bundle product: quitar precio en select

Recientemente tenÃa en mente crear un producto en Magento tipo “bundle” con 2 atributos para configurar; uno serÃa tipo checkbox y el otro tipo seleccionable. Hasta aquà todo perfecto.
Pero lo que no me convencÃa es que en el atributo seleccionable todos los valores marcaba +0.00€ al final de todas las opciones ya que no varÃa nunca el precio del producto al interactuar sobre este atributo.
¿Como quitar el precio y que quede más limpio y entendible?
Ir al fichero app / code / core /Mage / Bundle / Block / Catalog / Product / View / Type / Bundle / Option.php y crear una copia en app / code / local /Mage / Bundle / Block / Catalog / Product / View / Type / Bundle / Option.php para no sobreescribir el core de Magento.
Dirigise a la función getSelectionTitlePrice() sobre la lÃnea 218 y cambiar el código:
return $_selection->getName() . ' Â ' . ($includeContainer ? '' : '') . '+' .
$this->formatPriceString($price, $includeContainer) . ($includeContainer ? '' : '');
por:
if ($price == 0.00) {
return $_selection->getName() . ' Â ' . ($includeContainer ? '' : '');
} else {
return $_selection->getName() . ' Â ' . ($includeContainer ? '' : '') . '+' .
$this->formatPriceString($price, $includeContainer) . ($includeContainer ? '' : '');
}
Asà ha quedado:

Jose Nieto – Diseñador Web