On a SWIFT themed site if you set a products RRP to more than £1000 then it displays as just the part before the first thousands separator.
Problem is in layouts:
Dynamic Price Layout
Standard Tax Exclusive Price
Standard Tax Inclusive Price
Fix:
In each of these, replace code fragment:
With:
Problem is in layouts:
Dynamic Price Layout
Standard Tax Exclusive Price
Standard Tax Inclusive Price
Fix:
In each of these, replace code fragment:
Code:
".number_format((float)$rrpFormatted , 2, '.', '')."
Code:
$rrpFormatted
Comment