Hi
Finally dug through mails to Yours and was able to see what is the problem. Looks like issue is in configuration for prices. Firstly the Discount -25% option was unpublished, secondly tax is set to 0, so price with tax used in the script was not created.
To not make changes to the configuration I forced php code to show the discounted price instead.
- Code: Select all
if ($this->product->prices['basePrice'] != $this->product->prices['salesPrice']) {
echo '<span class="price-crossed">₨.' . $this->product->prices['basePrice'] . '</span>';
}
Now just add this to override.css, so it will be style a little better:
- Code: Select all
.price-crossed {
color: #222;
font-size: 18px;
font-weight: bold;
line-height: 1.6em;
padding: 0 30px;
text-decoration: line-through;
}