Is it possible to format a number to 2 decimal places with Smarty PHP?
Thanks.
To display 2 instead of 2.00 you can use : replace in Smarty PHP
See below example -
$number = 2.00 {$number|replace:'.00':''} Output :- 2
Hope this helps.