So I have been working on a Magento module that hides the price when the user is not logged in. I got it working thanks to AlanStorm but I just want to make sure it I’m going for the best approach.
What I did is setting a different template for the *catalog_product_price_template* block and from there I did all the logic
<?php $_message = Mage::getStoreConfig('catalog/pricehideconfig/title');
$_enabled = Mage::getStoreConfig('catalog/pricehideconfig/active');
$_current_template = Mage::getBaseDir('design')

