I have set a speciale price for a product in the backend but when I go to the product page the price appears and then off again. Also in the cart it's not display.
See link what I mean : Link
I have set a speciale price for a product in the backend but when I go to the product page the price appears and then off again. Also in the cart it's not display.
See link what I mean : Link
After seeing your code, find this on line 177:
<?php echo $priceProperties; ?>
And replace with this :
echo Mage::getModel('catalogrule/rule')->calcProductPriceRule($_product,$_product->getPrice());
I believe your theme doesn't take into account the discount. This would be a bug with the theme development.
This is untested (as I don't have full access to your theme) code so let me know if you have any trouble.