Magento News
Magento – Problem formatting price for indian rupee
i modified following code to show indian rupee
public function formatPrecision($price, $precision,
$options=array(), $includeContainer = true, $addBrackets = false)
{
if (!isset($options['precision'])) {
$options['precision'] = $precision;
}
if ($includeContainer) {
return '<span class="price">' . ($addBrackets ? '[' :
'') . $this->formatTxt($price, $options) . ($addBrackets ? ']' : '') .
'</span>';
}
return $this->formatTxt($price, $options);
}
everywhere on site its showing perfect but only in product
specification table it shows <span class="price">200</span>.
This happens only on live server not on staging and local
Please help
Magento – Problem formatting price for indian rupee
Possibly Related Posts:
- Database query different results
- Menu highlight in magento under admin
- magento disable a banner on certain category pages or have a banner with multiple links
- Magento, using ACL for frontend. Possible?
- Magento IE-7 Fix In Windows XP
RSS Feed