I overridden the Magento product price rule by overriding the getPrice() method in the " Mage_Catalog_Model_Product_Type_Price " class, simple products work fine and show the updated price that I mentioned in getPrice()
public function getPrice($product) { return 80; }
But in the case of downloadable products, it shows the initial price. Any one of them can tell me how I can redefine the price in downloadable products.
thanks
source share