Is it possible to format a number to 2 decimal places with Smarty PHP
{$number|number_format:2}
is what you want
string_format accepts sprintf formatting options:
{$number|string_format:"%.2f"}
{$number|number_format:2}
is what you want
string_format accepts sprintf formatting options:
{$number|string_format:"%.2f"}