-1

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

Hazem Abdullah
  • 1,837
  • 4
  • 23
  • 41

1 Answers1

0

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.

Chris Rogers
  • 1,525
  • 2
  • 20
  • 40